diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-11-25 09:40:37 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-25 09:40:37 +0100 |
commit | 411c41eea58bd3500cf897e2c27dd5330935a3a8 (patch) | |
tree | c6987d1351581def73321b7c8d518ac75db876a2 /drivers/block/aoe/aoeblk.c | |
parent | hso: Hook up ->reset_resume (diff) | |
download | linux-411c41eea58bd3500cf897e2c27dd5330935a3a8.tar.xz linux-411c41eea58bd3500cf897e2c27dd5330935a3a8.zip |
aoe: remove private mac address format function
Add %pm to omit the colons when printing a mac address.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/block/aoe/aoeblk.c')
-rw-r--r-- | drivers/block/aoe/aoeblk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/aoe/aoeblk.c b/drivers/block/aoe/aoeblk.c index 1747dd272cd4..2307a271bdc9 100644 --- a/drivers/block/aoe/aoeblk.c +++ b/drivers/block/aoe/aoeblk.c @@ -37,7 +37,7 @@ static ssize_t aoedisk_show_mac(struct device *dev, if (t == NULL) return snprintf(page, PAGE_SIZE, "none\n"); - return snprintf(page, PAGE_SIZE, "%012llx\n", mac_addr(t->addr)); + return snprintf(page, PAGE_SIZE, "%pm\n", t->addr); } static ssize_t aoedisk_show_netif(struct device *dev, struct device_attribute *attr, char *page) |