ar71xx: dir-505-a1: use ath79_parse_ascii_mac helper
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 20 Sep 2013 16:41:31 +0000 (16:41 +0000)
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 20 Sep 2013 16:41:31 +0000 (16:41 +0000)
Remove the local MAC address parser function and use
the generic one instead.

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38086 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/ar71xx/files/arch/mips/ath79/mach-dir-505-a1.c

index 651bb76..d391465 100644 (file)
 
 #define DIR_505A1_ART_ADDRESS          0x1f010000
 #define DIR_505A1_CALDATA_OFFSET       0x1000
-#define DIR_505A1_LAN_MAC_ADDRESS      0x1f020004
-#define DIR_505A1_WAN_MAC_ADDRESS      0x1f020016
+
+#define DIR_505A1_MAC_PART_ADDRESS     0x1f020000
+#define DIR_505A1_LAN_MAC_OFFSET       0x04
+#define DIR_505A1_WAN_MAC_OFFSET       0x16
 
 static struct gpio_led dir_505_a1_leds_gpio[] __initdata = {
        {
@@ -68,22 +70,10 @@ static struct gpio_keys_button dir_505_a1_gpio_keys[] __initdata = {
        }
 };
 
-static void __init dir_505_a1_read_ascii_mac(u8 *dest, unsigned int src_addr)
-{
-       int ret;
-       u8 *src = (u8 *)KSEG1ADDR(src_addr);
-
-       ret = sscanf(src, "%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx",
-                       &dest[0], &dest[1], &dest[2],
-                       &dest[3], &dest[4], &dest[5]);
-
-       if (ret != ETH_ALEN)
-               memset(dest, 0, ETH_ALEN);
-}
-
 static void __init dir_505_a1_setup(void)
 {
        u8 *art = (u8 *) KSEG1ADDR(DIR_505A1_ART_ADDRESS);
+       u8 *mac = (u8 *) KSEG1ADDR(DIR_505A1_MAC_PART_ADDRESS);
        u8 lan_mac[ETH_ALEN];
        u8 wan_mac[ETH_ALEN];
 
@@ -109,8 +99,8 @@ static void __init dir_505_a1_setup(void)
 
        ath79_register_usb();
 
-       dir_505_a1_read_ascii_mac(lan_mac, DIR_505A1_LAN_MAC_ADDRESS);
-       dir_505_a1_read_ascii_mac(wan_mac, DIR_505A1_WAN_MAC_ADDRESS);
+       ath79_parse_ascii_mac(mac + DIR_505A1_LAN_MAC_OFFSET, lan_mac);
+       ath79_parse_ascii_mac(mac + DIR_505A1_WAN_MAC_OFFSET, wan_mac);
 
        ath79_init_mac(ath79_eth0_data.mac_addr, wan_mac, 0);
        ath79_init_mac(ath79_eth1_data.mac_addr, lan_mac, 0);