mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
sparc: Commonize get_one_property() implementations.
Add final len assignment in sparc64's get_one_property() (it's necessary to avoid unchecked return value warnings on the sparc32 side), and mark name argument const on sparc32's copy. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b9e5567cda
commit
59966e3b4e
@ -196,7 +196,7 @@ static char * __init build_full_name(struct device_node *dp)
|
||||
return n;
|
||||
}
|
||||
|
||||
static char * __init get_one_property(phandle node, char *name)
|
||||
static char * __init get_one_property(phandle node, const char *name)
|
||||
{
|
||||
char *buf = "<NULL>";
|
||||
int len;
|
||||
|
@ -407,7 +407,7 @@ static char * __init get_one_property(phandle node, const char *name)
|
||||
len = prom_getproplen(node, name);
|
||||
if (len > 0) {
|
||||
buf = prom_early_alloc(len);
|
||||
prom_getproperty(node, name, buf, len);
|
||||
len = prom_getproperty(node, name, buf, len);
|
||||
}
|
||||
|
||||
return buf;
|
||||
|
Loading…
Reference in New Issue
Block a user