Commit 47b1e689 authored by Kim Phillips's avatar Kim Phillips Committed by Rob Herring

of/address: sparse fixes

drivers/of/address.c:66:29: warning: incorrect type in argument 1 (different base types)
drivers/of/address.c:66:29:    expected restricted __be32 const [usertype] *cell
drivers/of/address.c:66:29:    got unsigned int [usertype] *addr
drivers/of/address.c:87:32: warning: incorrect type in argument 1 (different base types)
drivers/of/address.c:87:32:    expected restricted __be32 const [usertype] *cell
drivers/of/address.c:87:32:    got unsigned int [usertype] *addr
drivers/of/address.c:91:30: warning: incorrect type in assignment (different base types)
drivers/of/address.c:91:30:    expected unsigned int [unsigned] [usertype] <noident>
drivers/of/address.c:91:30:    got restricted __be32 [usertype] <noident>
drivers/of/address.c:92:22: warning: incorrect type in assignment (different base types)
drivers/of/address.c:92:22:    expected unsigned int [unsigned] [usertype] <noident>
drivers/of/address.c:92:22:    got restricted __be32 [usertype] <noident>
drivers/of/address.c:147:35: warning: incorrect type in argument 1 (different base types)
drivers/of/address.c:147:35:    expected restricted __be32 const [usertype] *addr
drivers/of/address.c:147:35:    got unsigned int [usertype] *addr
drivers/of/address.c:157:34: warning: incorrect type in argument 1 (different base types)
drivers/of/address.c:157:34:    expected restricted __be32 const [usertype] *cell
drivers/of/address.c:157:34:    got unsigned int [usertype] *
drivers/of/address.c:256:29: warning: restricted __be32 degrades to integer
drivers/of/address.c:256:36: warning: restricted __be32 degrades to integer
drivers/of/address.c:262:34: warning: incorrect type in argument 1 (different base types)
drivers/of/address.c:262:34:    expected restricted __be32 const [usertype] *cell
drivers/of/address.c:262:34:    got unsigned int [usertype] *
drivers/of/address.c:372:41: warning: incorrect type in argument 1 (different base types)
drivers/of/address.c:372:41:    expected restricted __be32 const [usertype] *cell
drivers/of/address.c:372:41:    got unsigned int [usertype] *addr
drivers/of/address.c:395:53: warning: incorrect type in argument 2 (different base types)
drivers/of/address.c:395:53:    expected restricted __be32 const [usertype] *addr
drivers/of/address.c:395:53:    got unsigned int [usertype] *addr
drivers/of/address.c:443:50: warning: incorrect type in argument 2 (different base types)
drivers/of/address.c:443:50:    expected restricted __be32 const [usertype] *addr
drivers/of/address.c:443:50:    got unsigned int *<noident>
drivers/of/address.c:455:49: warning: incorrect type in argument 1 (different base types)
drivers/of/address.c:455:49:    expected restricted __be32 const [usertype] *cell
drivers/of/address.c:455:49:    got unsigned int *<noident>
drivers/of/address.c:480:60: warning: incorrect type in argument 2 (different base types)
drivers/of/address.c:480:60:    expected restricted __be32 const [usertype] *addr
drivers/of/address.c:480:60:    got unsigned int *<noident>
drivers/of/address.c:412:5: warning: symbol '__of_translate_address' was not declared. Should it be static?
drivers/of/address.c:520:14: error: symbol 'of_get_address' redeclared with different type (originally declared at include/linux/of_address.h:22) - different base types
Signed-off-by: default avatarKim Phillips <kim.phillips@freescale.com>
Signed-off-by: default avatarRob Herring <rob.herring@calxeda.com>
parent 25c040c9
...@@ -37,9 +37,9 @@ struct of_bus { ...@@ -37,9 +37,9 @@ struct of_bus {
int (*match)(struct device_node *parent); int (*match)(struct device_node *parent);
void (*count_cells)(struct device_node *child, void (*count_cells)(struct device_node *child,
int *addrc, int *sizec); int *addrc, int *sizec);
u64 (*map)(u32 *addr, const __be32 *range, u64 (*map)(__be32 *addr, const __be32 *range,
int na, int ns, int pna); int na, int ns, int pna);
int (*translate)(u32 *addr, u64 offset, int na); int (*translate)(__be32 *addr, u64 offset, int na);
unsigned int (*get_flags)(const __be32 *addr); unsigned int (*get_flags)(const __be32 *addr);
}; };
...@@ -56,7 +56,7 @@ static void of_bus_default_count_cells(struct device_node *dev, ...@@ -56,7 +56,7 @@ static void of_bus_default_count_cells(struct device_node *dev,
*sizec = of_n_size_cells(dev); *sizec = of_n_size_cells(dev);
} }
static u64 of_bus_default_map(u32 *addr, const __be32 *range, static u64 of_bus_default_map(__be32 *addr, const __be32 *range,
int na, int ns, int pna) int na, int ns, int pna)
{ {
u64 cp, s, da; u64 cp, s, da;
...@@ -82,7 +82,7 @@ static u64 of_bus_default_map(u32 *addr, const __be32 *range, ...@@ -82,7 +82,7 @@ static u64 of_bus_default_map(u32 *addr, const __be32 *range,
return da - cp; return da - cp;
} }
static int of_bus_default_translate(u32 *addr, u64 offset, int na) static int of_bus_default_translate(__be32 *addr, u64 offset, int na)
{ {
u64 a = of_read_number(addr, na); u64 a = of_read_number(addr, na);
memset(addr, 0, na * 4); memset(addr, 0, na * 4);
...@@ -138,7 +138,7 @@ static unsigned int of_bus_pci_get_flags(const __be32 *addr) ...@@ -138,7 +138,7 @@ static unsigned int of_bus_pci_get_flags(const __be32 *addr)
return flags; return flags;
} }
static u64 of_bus_pci_map(u32 *addr, const __be32 *range, int na, int ns, static u64 of_bus_pci_map(__be32 *addr, const __be32 *range, int na, int ns,
int pna) int pna)
{ {
u64 cp, s, da; u64 cp, s, da;
...@@ -165,7 +165,7 @@ static u64 of_bus_pci_map(u32 *addr, const __be32 *range, int na, int ns, ...@@ -165,7 +165,7 @@ static u64 of_bus_pci_map(u32 *addr, const __be32 *range, int na, int ns,
return da - cp; return da - cp;
} }
static int of_bus_pci_translate(u32 *addr, u64 offset, int na) static int of_bus_pci_translate(__be32 *addr, u64 offset, int na)
{ {
return of_bus_default_translate(addr + 1, offset, na - 1); return of_bus_default_translate(addr + 1, offset, na - 1);
} }
...@@ -247,7 +247,7 @@ static void of_bus_isa_count_cells(struct device_node *child, ...@@ -247,7 +247,7 @@ static void of_bus_isa_count_cells(struct device_node *child,
*sizec = 1; *sizec = 1;
} }
static u64 of_bus_isa_map(u32 *addr, const __be32 *range, int na, int ns, static u64 of_bus_isa_map(__be32 *addr, const __be32 *range, int na, int ns,
int pna) int pna)
{ {
u64 cp, s, da; u64 cp, s, da;
...@@ -270,7 +270,7 @@ static u64 of_bus_isa_map(u32 *addr, const __be32 *range, int na, int ns, ...@@ -270,7 +270,7 @@ static u64 of_bus_isa_map(u32 *addr, const __be32 *range, int na, int ns,
return da - cp; return da - cp;
} }
static int of_bus_isa_translate(u32 *addr, u64 offset, int na) static int of_bus_isa_translate(__be32 *addr, u64 offset, int na)
{ {
return of_bus_default_translate(addr + 1, offset, na - 1); return of_bus_default_translate(addr + 1, offset, na - 1);
} }
...@@ -338,7 +338,7 @@ static struct of_bus *of_match_bus(struct device_node *np) ...@@ -338,7 +338,7 @@ static struct of_bus *of_match_bus(struct device_node *np)
} }
static int of_translate_one(struct device_node *parent, struct of_bus *bus, static int of_translate_one(struct device_node *parent, struct of_bus *bus,
struct of_bus *pbus, u32 *addr, struct of_bus *pbus, __be32 *addr,
int na, int ns, int pna, const char *rprop) int na, int ns, int pna, const char *rprop)
{ {
const __be32 *ranges; const __be32 *ranges;
...@@ -409,12 +409,12 @@ static int of_translate_one(struct device_node *parent, struct of_bus *bus, ...@@ -409,12 +409,12 @@ static int of_translate_one(struct device_node *parent, struct of_bus *bus,
* that can be mapped to a cpu physical address). This is not really specified * that can be mapped to a cpu physical address). This is not really specified
* that way, but this is traditionally the way IBM at least do things * that way, but this is traditionally the way IBM at least do things
*/ */
u64 __of_translate_address(struct device_node *dev, const __be32 *in_addr, static u64 __of_translate_address(struct device_node *dev,
const char *rprop) const __be32 *in_addr, const char *rprop)
{ {
struct device_node *parent = NULL; struct device_node *parent = NULL;
struct of_bus *bus, *pbus; struct of_bus *bus, *pbus;
u32 addr[OF_MAX_ADDR_CELLS]; __be32 addr[OF_MAX_ADDR_CELLS];
int na, ns, pna, pns; int na, ns, pna, pns;
u64 result = OF_BAD_ADDR; u64 result = OF_BAD_ADDR;
......
...@@ -19,7 +19,7 @@ extern void __iomem *of_iomap(struct device_node *device, int index); ...@@ -19,7 +19,7 @@ extern void __iomem *of_iomap(struct device_node *device, int index);
* the address space flags too. The PCI version uses a BAR number * the address space flags too. The PCI version uses a BAR number
* instead of an absolute index * instead of an absolute index
*/ */
extern const u32 *of_get_address(struct device_node *dev, int index, extern const __be32 *of_get_address(struct device_node *dev, int index,
u64 *size, unsigned int *flags); u64 *size, unsigned int *flags);
#ifndef pci_address_to_pio #ifndef pci_address_to_pio
...@@ -44,7 +44,7 @@ static inline void __iomem *of_iomap(struct device_node *device, int index) ...@@ -44,7 +44,7 @@ static inline void __iomem *of_iomap(struct device_node *device, int index)
{ {
return NULL; return NULL;
} }
static inline const u32 *of_get_address(struct device_node *dev, int index, static inline const __be32 *of_get_address(struct device_node *dev, int index,
u64 *size, unsigned int *flags) u64 *size, unsigned int *flags)
{ {
return NULL; return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment