X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/6b4b0de60b4d3e6f6ae69a9ee9dfb0cf9f25322f..e0b80e41eb0b24e76285b9355725d2f4f66ada50:/target/linux/ixp4xx/patches-2.6.32/300-avila_fetch_mac.patch diff --git a/target/linux/ixp4xx/patches-2.6.32/300-avila_fetch_mac.patch b/target/linux/ixp4xx/patches-2.6.32/300-avila_fetch_mac.patch index c29883427..d3ccb045c 100644 --- a/target/linux/ixp4xx/patches-2.6.32/300-avila_fetch_mac.patch +++ b/target/linux/ixp4xx/patches-2.6.32/300-avila_fetch_mac.patch @@ -147,6 +147,7 @@ +static struct avila_board_info * __init avila_find_board_info(char *model) +{ + int i; ++ model[6] = '\0'; + + for (i = 0; i < ARRAY_SIZE(avila_boards); i++) { + struct avila_board_info *info = &avila_boards[i]; @@ -162,7 +163,7 @@ +static void at24_setup(struct memory_accessor *mem_acc, void *context) +{ + char mac_addr[ETH_ALEN]; -+ char model[6]; ++ char model[7]; + + at24_mem_acc = mem_acc; + @@ -170,7 +171,6 @@ + if (at24_mem_acc->read(at24_mem_acc, mac_addr, 0x0, 6) == 6) { + memcpy(&avila_npeb_data.hwaddr, mac_addr, ETH_ALEN); + } -+ + if (at24_mem_acc->read(at24_mem_acc, mac_addr, 0x6, 6) == 6) { + memcpy(&avila_npec_data.hwaddr, mac_addr, ETH_ALEN); + }