diff options
author | Kim Phillips <kim.phillips@freescale.com> | 2012-10-08 19:42:11 -0500 |
---|---|---|
committer | Rob Herring <rob.herring@calxeda.com> | 2012-10-17 15:53:03 -0500 |
commit | 24fb530f990394915e8daceeca2a4a4e929e156f (patch) | |
tree | d9e1226df1c706f36cda9afc01764ff224e02477 /drivers/of | |
parent | d2e4151821dc4d1db414de287f6e3503c1718815 (diff) | |
download | linux-3.10-24fb530f990394915e8daceeca2a4a4e929e156f.tar.gz linux-3.10-24fb530f990394915e8daceeca2a4a4e929e156f.tar.bz2 linux-3.10-24fb530f990394915e8daceeca2a4a4e929e156f.zip |
of/platform: sparse fix
drivers/of/platform.c:110:59: warning: incorrect type in argument 2 (different base types)
drivers/of/platform.c:110:59: expected restricted __be32 const [usertype] *addr
drivers/of/platform.c:110:59: got unsigned int const [usertype] *[assigned] reg
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Diffstat (limited to 'drivers/of')
-rw-r--r-- | drivers/of/platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/of/platform.c b/drivers/of/platform.c index 9bdeaf30b17..b80891b4381 100644 --- a/drivers/of/platform.c +++ b/drivers/of/platform.c @@ -76,7 +76,7 @@ void of_device_make_bus_id(struct device *dev) { static atomic_t bus_no_reg_magic; struct device_node *node = dev->of_node; - const u32 *reg; + const __be32 *reg; u64 addr; const __be32 *addrp; int magic; |