aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorAnton Vorontsov <avorontsov@ru.mvista.com>2008-12-03 14:27:52 -0500
committerKumar Gala <galak@kernel.crashing.org>2008-12-30 12:13:42 -0500
commit78c7705037ed9f107660178e17aa73f8bc4127e8 (patch)
treed537933b6304a7dc8f6574122470175c91f21570 /arch
parent81b36a0b6ea97c5c2f59e504c56e5a57ee26884a (diff)
powerpc/83xx: Fix sparse warnings in mpc836x_mds.c
This patch fixes following sparse warnings: CHECK mpc836x_mds.c mpc836x_mds.c:75:12: warning: Using plain integer as NULL pointer mpc836x_mds.c:79:13: warning: incorrect type in assignment (different address spaces) mpc836x_mds.c:79:13: expected unsigned char [usertype] *static [toplevel] bcsr_regs mpc836x_mds.c:79:13: got void [noderef] <asn:2>* mpc836x_mds.c:105:3: warning: incorrect type in argument 1 (different address spaces) mpc836x_mds.c:105:3: expected unsigned char volatile [noderef] [usertype] <asn:2>*addr mpc836x_mds.c:105:3: got unsigned char [usertype] * mpc836x_mds.c:105:3: warning: incorrect type in argument 1 (different address spaces) mpc836x_mds.c:105:3: expected unsigned char const volatile [noderef] [usertype] <asn:2>*addr mpc836x_mds.c:105:3: got unsigned char [usertype] * mpc836x_mds.c:107:3: warning: incorrect type in argument 1 (different address spaces) mpc836x_mds.c:107:3: expected unsigned char volatile [noderef] [usertype] <asn:2>*addr mpc836x_mds.c:107:3: got unsigned char [usertype] * mpc836x_mds.c:107:3: warning: incorrect type in argument 1 (different address spaces) mpc836x_mds.c:107:3: expected unsigned char const volatile [noderef] [usertype] <asn:2>*addr mpc836x_mds.c:107:3: got unsigned char [usertype] * mpc836x_mds.c:131:11: warning: incorrect type in argument 1 (different address spaces) mpc836x_mds.c:131:11: expected void volatile [noderef] <asn:2>*addr mpc836x_mds.c:131:11: got unsigned char [usertype] *static [toplevel] bcsr_regs Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/powerpc/platforms/83xx/mpc836x_mds.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/platforms/83xx/mpc836x_mds.c b/arch/powerpc/platforms/83xx/mpc836x_mds.c
index 9d46e5bdd101..c0a09c34956b 100644
--- a/arch/powerpc/platforms/83xx/mpc836x_mds.c
+++ b/arch/powerpc/platforms/83xx/mpc836x_mds.c
@@ -18,6 +18,7 @@
18 18
19#include <linux/stddef.h> 19#include <linux/stddef.h>
20#include <linux/kernel.h> 20#include <linux/kernel.h>
21#include <linux/compiler.h>
21#include <linux/init.h> 22#include <linux/init.h>
22#include <linux/errno.h> 23#include <linux/errno.h>
23#include <linux/reboot.h> 24#include <linux/reboot.h>
@@ -55,8 +56,6 @@
55#define DBG(fmt...) 56#define DBG(fmt...)
56#endif 57#endif
57 58
58static u8 *bcsr_regs = NULL;
59
60/* ************************************************************************ 59/* ************************************************************************
61 * 60 *
62 * Setup the architecture 61 * Setup the architecture
@@ -65,13 +64,14 @@ static u8 *bcsr_regs = NULL;
65static void __init mpc836x_mds_setup_arch(void) 64static void __init mpc836x_mds_setup_arch(void)
66{ 65{
67 struct device_node *np; 66 struct device_node *np;
67 u8 __iomem *bcsr_regs = NULL;
68 68
69 if (ppc_md.progress) 69 if (ppc_md.progress)
70 ppc_md.progress("mpc836x_mds_setup_arch()", 0); 70 ppc_md.progress("mpc836x_mds_setup_arch()", 0);
71 71
72 /* Map BCSR area */ 72 /* Map BCSR area */
73 np = of_find_node_by_name(NULL, "bcsr"); 73 np = of_find_node_by_name(NULL, "bcsr");
74 if (np != 0) { 74 if (np) {
75 struct resource res; 75 struct resource res;
76 76
77 of_address_to_resource(np, 0, &res); 77 of_address_to_resource(np, 0, &res);