diff options
author | Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 2007-05-28 10:13:50 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-06-26 13:57:33 -0400 |
commit | 08a45936823d0c47db9e328185fdaad6c62d16bd (patch) | |
tree | b5ad2ce7782f3b25545554877eb2bf530e4f59ad /arch/mips/au1000 | |
parent | e460b73c8790bb14959cc99a8eb040e6bd2ecbf0 (diff) |
[MIPS] Alchemy: Fix wrong cast
Signed-off-by: Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/au1000')
-rw-r--r-- | arch/mips/au1000/pb1100/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/au1000/pb1100/init.c b/arch/mips/au1000/pb1100/init.c index 1fae39a608cf..6131b56f41b5 100644 --- a/arch/mips/au1000/pb1100/init.c +++ b/arch/mips/au1000/pb1100/init.c | |||
@@ -53,7 +53,7 @@ void __init prom_init(void) | |||
53 | 53 | ||
54 | prom_argc = fw_arg0; | 54 | prom_argc = fw_arg0; |
55 | prom_argv = (char **) fw_arg1; | 55 | prom_argv = (char **) fw_arg1; |
56 | prom_envp = (int *) fw_arg3; | 56 | prom_envp = (char **) fw_arg3; |
57 | 57 | ||
58 | mips_machgroup = MACH_GROUP_ALCHEMY; | 58 | mips_machgroup = MACH_GROUP_ALCHEMY; |
59 | mips_machtype = MACH_PB1100; | 59 | mips_machtype = MACH_PB1100; |