aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ehea
diff options
context:
space:
mode:
authorJan-Bernd Themann <ossthema@de.ibm.com>2007-08-22 10:20:58 -0400
committerJeff Garzik <jeff@garzik.org>2007-08-25 02:31:15 -0400
commita8e34fda798861d0f3f12c2739c1bec258be8bed (patch)
treeee39991d769971487ce00825ac57445919a3851e /drivers/net/ehea
parente3efb05468128e834cf17d492822333c6e189ae4 (diff)
ehea: fix interface to DLPAR tools
Userspace DLPAR tool expects decimal numbers to be written to and read from sysfs entries. Signed-off-by: Jan-Bernd Themann <themann@de.ibm.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/ehea')
-rw-r--r--drivers/net/ehea/ehea_main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ehea/ehea_main.c b/drivers/net/ehea/ehea_main.c
index 9756211e83ce..22d000f50efa 100644
--- a/drivers/net/ehea/ehea_main.c
+++ b/drivers/net/ehea/ehea_main.c
@@ -2490,7 +2490,7 @@ static ssize_t ehea_show_port_id(struct device *dev,
2490 struct device_attribute *attr, char *buf) 2490 struct device_attribute *attr, char *buf)
2491{ 2491{
2492 struct ehea_port *port = container_of(dev, struct ehea_port, ofdev.dev); 2492 struct ehea_port *port = container_of(dev, struct ehea_port, ofdev.dev);
2493 return sprintf(buf, "0x%X", port->logical_port_id); 2493 return sprintf(buf, "%d", port->logical_port_id);
2494} 2494}
2495 2495
2496static DEVICE_ATTR(log_port_id, S_IRUSR | S_IRGRP | S_IROTH, ehea_show_port_id, 2496static 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,
2781 2781
2782 u32 logical_port_id; 2782 u32 logical_port_id;
2783 2783
2784 sscanf(buf, "%X", &logical_port_id); 2784 sscanf(buf, "%d", &logical_port_id);
2785 2785
2786 port = ehea_get_port(adapter, logical_port_id); 2786 port = ehea_get_port(adapter, logical_port_id);
2787 2787
@@ -2834,7 +2834,7 @@ static ssize_t ehea_remove_port(struct device *dev,
2834 int i; 2834 int i;
2835 u32 logical_port_id; 2835 u32 logical_port_id;
2836 2836
2837 sscanf(buf, "%X", &logical_port_id); 2837 sscanf(buf, "%d", &logical_port_id);
2838 2838
2839 port = ehea_get_port(adapter, logical_port_id); 2839 port = ehea_get_port(adapter, logical_port_id);
2840 2840