Commit 21cd8833 authored by David S. Miller's avatar David S. Miller

sparc64: Fix sparse warnings in of_device.c

Passing unsigned int pointer where plain int pointer is
expected.
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c91e2eca
......@@ -401,8 +401,7 @@ static int __init build_one_resource(struct device_node *parent,
int na, int ns, int pna)
{
const u32 *ranges;
unsigned int rlen;
int rone;
int rone, rlen;
ranges = of_get_property(parent, "ranges", &rlen);
if (ranges == NULL || rlen == 0) {
......
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