forked from Minki/linux
sparc64: Fix sparse warnings in of_device.c
Passing unsigned int pointer where plain int pointer is expected. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c91e2ecad0
commit
21cd883393
@ -401,8 +401,7 @@ static int __init build_one_resource(struct device_node *parent,
|
|||||||
int na, int ns, int pna)
|
int na, int ns, int pna)
|
||||||
{
|
{
|
||||||
const u32 *ranges;
|
const u32 *ranges;
|
||||||
unsigned int rlen;
|
int rone, rlen;
|
||||||
int rone;
|
|
||||||
|
|
||||||
ranges = of_get_property(parent, "ranges", &rlen);
|
ranges = of_get_property(parent, "ranges", &rlen);
|
||||||
if (ranges == NULL || rlen == 0) {
|
if (ranges == NULL || rlen == 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user