diff options
author | Anton Blanchard <anton@samba.org> | 2014-04-14 13:54:05 +0200 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2014-04-28 08:31:54 +0200 |
commit | a2dd5da77f2cc9fc9ff11ea6b699556254e94a6c (patch) | |
tree | 0304ad48129ca48360963cad6138d600deacbe8c /arch/powerpc/boot/ops.h | |
parent | powerpc/perf/hv-24x7: Catalog version number is be64, not be32 (diff) | |
download | linux-a2dd5da77f2cc9fc9ff11ea6b699556254e94a6c.tar.xz linux-a2dd5da77f2cc9fc9ff11ea6b699556254e94a6c.zip |
powerpc: Rename duplicate COMMAND_LINE_SIZE define
We have two definitions of COMMAND_LINE_SIZE, one for the kernel
and one for the boot wrapper. I assume this is so the boot
wrapper can be self sufficient and not rely on kernel headers.
Having two defines with the same name is confusing, I just
updated the wrong one when trying to bump it.
Make the boot wrapper define unique by calling it
BOOT_COMMAND_LINE_SIZE.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/boot/ops.h')
-rw-r--r-- | arch/powerpc/boot/ops.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/boot/ops.h b/arch/powerpc/boot/ops.h index b3218ce451bb..339e041e8dda 100644 --- a/arch/powerpc/boot/ops.h +++ b/arch/powerpc/boot/ops.h @@ -15,7 +15,7 @@ #include "types.h" #include "string.h" -#define COMMAND_LINE_SIZE 512 +#define BOOT_COMMAND_LINE_SIZE 512 #define MAX_PATH_LEN 256 #define MAX_PROP_LEN 256 /* What should this be? */ |