ar71xx: dir-505-a1: use ath79_parse_ascii_mac helper
Remove the local MAC address parser function and use the generic one instead. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 38086
This commit is contained in:
parent
e312a917d3
commit
2a777a272c
@ -35,8 +35,10 @@
|
||||
|
||||
#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);
|
||||
|
Loading…
Reference in New Issue
Block a user