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

Commit a8e34fda authored by Jan-Bernd Themann's avatar Jan-Bernd Themann Committed by Jeff Garzik
Browse files

ehea: fix interface to DLPAR tools



Userspace DLPAR tool expects decimal numbers to be written to
and read from sysfs entries.

Signed-off-by: default avatarJan-Bernd Themann <themann@de.ibm.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent e3efb054
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -2490,7 +2490,7 @@ static ssize_t ehea_show_port_id(struct device *dev,
				 struct device_attribute *attr, char *buf)
				 struct device_attribute *attr, char *buf)
{
{
	struct ehea_port *port = container_of(dev, struct ehea_port, ofdev.dev);
	struct ehea_port *port = container_of(dev, struct ehea_port, ofdev.dev);
	return sprintf(buf, "0x%X", port->logical_port_id);
	return sprintf(buf, "%d", port->logical_port_id);
}
}


static DEVICE_ATTR(log_port_id, S_IRUSR | S_IRGRP | S_IROTH, ehea_show_port_id,
static DEVICE_ATTR(log_port_id, S_IRUSR | S_IRGRP | S_IROTH, ehea_show_port_id,
@@ -2781,7 +2781,7 @@ static ssize_t ehea_probe_port(struct device *dev,


	u32 logical_port_id;
	u32 logical_port_id;


	sscanf(buf, "%X", &logical_port_id);
	sscanf(buf, "%d", &logical_port_id);


	port = ehea_get_port(adapter, logical_port_id);
	port = ehea_get_port(adapter, logical_port_id);


@@ -2834,7 +2834,7 @@ static ssize_t ehea_remove_port(struct device *dev,
	int i;
	int i;
	u32 logical_port_id;
	u32 logical_port_id;


	sscanf(buf, "%X", &logical_port_id);
	sscanf(buf, "%d", &logical_port_id);


	port = ehea_get_port(adapter, logical_port_id);
	port = ehea_get_port(adapter, logical_port_id);