Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 59966e3b authored by David S. Miller's avatar David S. Miller
Browse files

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: default avatarDavid S. Miller <davem@davemloft.net>
parent b9e5567c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
+1 −1
Original line number Diff line number Diff line
@@ -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;