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

Commit e82b89a6 authored by Prarit Bhargava's avatar Prarit Bhargava Committed by Benjamin Herrenschmidt
Browse files

powerpc/vio: Fix modalias_show return values



modalias_show() should return an empty string on error, not -ENODEV.

This causes the following false and annoying error:

> find /sys/devices -name modalias -print0 | xargs -0 cat >/dev/null
cat: /sys/devices/vio/4000/modalias: No such device
cat: /sys/devices/vio/4001/modalias: No such device
cat: /sys/devices/vio/4002/modalias: No such device
cat: /sys/devices/vio/4004/modalias: No such device
cat: /sys/devices/vio/modalias: No such device

Signed-off-by: default avatarPrarit Bhargava <prarit@redhat.com>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
CC: <stable@vger.kernel.org>
parent 1cf389df
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -1530,11 +1530,15 @@ static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
	const char *cp;

	dn = dev->of_node;
	if (!dn)
		return -ENODEV;
	if (!dn) {
		strcat(buf, "\n");
		return strlen(buf);
	}
	cp = of_get_property(dn, "compatible", NULL);
	if (!cp)
		return -ENODEV;
	if (!cp) {
		strcat(buf, "\n");
		return strlen(buf);
	}

	return sprintf(buf, "vio:T%sS%s\n", vio_dev->type, cp);
}