Use the correct arg order when calling nvram_create_partition().

Signed-off-by: Jim Keniston <jkeni...@us.ibm.com>
---

 arch/powerpc/platforms/pseries/nvram.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/powerpc/platforms/pseries/nvram.c 
b/arch/powerpc/platforms/pseries/nvram.c
index e1a43d9..4b705dc 100644
--- a/arch/powerpc/platforms/pseries/nvram.c
+++ b/arch/powerpc/platforms/pseries/nvram.c
@@ -292,7 +292,7 @@ static int __init pseries_nvram_init_log_partition(void)
        /* Create one if we didn't find */
        if (!p) {
                p = nvram_create_partition(NVRAM_LOG_PART_NAME, NVRAM_SIG_OS,
-                                          NVRAM_MIN_REQ, NVRAM_MAX_REQ);
+                                          NVRAM_MAX_REQ, NVRAM_MIN_REQ);
                /* No room for it, try to get rid of any OS partition
                 * and try again
                 */
@@ -301,8 +301,8 @@ static int __init pseries_nvram_init_log_partition(void)
                                " partition, deleting all OS partitions...");
                        nvram_remove_partition(NULL, NVRAM_SIG_OS);
                        p = nvram_create_partition(NVRAM_LOG_PART_NAME,
-                                                  NVRAM_SIG_OS, NVRAM_MIN_REQ,
-                                                  NVRAM_MAX_REQ);
+                                                  NVRAM_SIG_OS, NVRAM_MAX_REQ,
+                                                  NVRAM_MIN_REQ);
                }
        }
 

_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev

Reply via email to