Skip to content

Commit 4d73b73

Browse files
andy-shevamalon
authored andcommitted
FIRMWARE: bcm47xx_nvram: Replace mac address parsing
Replace sscanf() with mac_pton(). Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Hauke Mehrtens <hauke@hauke-m.de> Cc: David S. Miller <davem@davemloft.net> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/17982/ Signed-off-by: James Hogan <jhogan@kernel.org>
1 parent b68c257 commit 4d73b73

File tree

2 files changed

+4
-15
lines changed

2 files changed

+4
-15
lines changed

drivers/firmware/broadcom/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ config BCM47XX_NVRAM
1313
config BCM47XX_SPROM
1414
bool "Broadcom SPROM driver"
1515
depends on BCM47XX_NVRAM
16+
select GENERIC_NET_UTILS
1617
help
1718
Broadcom devices store configuration data in SPROM. Accessing it is
1819
specific to the bus host type, e.g. PCI(e) devices have it mapped in

drivers/firmware/broadcom/bcm47xx_sprom.c

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -137,20 +137,6 @@ static void nvram_read_leddc(const char *prefix, const char *name,
137137
*leddc_off_time = (val >> 16) & 0xff;
138138
}
139139

140-
static void bcm47xx_nvram_parse_macaddr(char *buf, u8 macaddr[6])
141-
{
142-
if (strchr(buf, ':'))
143-
sscanf(buf, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx", &macaddr[0],
144-
&macaddr[1], &macaddr[2], &macaddr[3], &macaddr[4],
145-
&macaddr[5]);
146-
else if (strchr(buf, '-'))
147-
sscanf(buf, "%hhx-%hhx-%hhx-%hhx-%hhx-%hhx", &macaddr[0],
148-
&macaddr[1], &macaddr[2], &macaddr[3], &macaddr[4],
149-
&macaddr[5]);
150-
else
151-
pr_warn("Can not parse mac address: %s\n", buf);
152-
}
153-
154140
static void nvram_read_macaddr(const char *prefix, const char *name,
155141
u8 val[6], bool fallback)
156142
{
@@ -161,7 +147,9 @@ static void nvram_read_macaddr(const char *prefix, const char *name,
161147
if (err < 0)
162148
return;
163149

164-
bcm47xx_nvram_parse_macaddr(buf, val);
150+
strreplace(buf, '-', ':');
151+
if (!mac_pton(buf, val))
152+
pr_warn("Can not parse mac address: %s\n", buf);
165153
}
166154

167155
static void nvram_read_alpha2(const char *prefix, const char *name,

0 commit comments

Comments
 (0)