diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2010-01-31 13:46:52 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2010-01-31 13:46:52 +0000 |
commit | 55e30d152a550c7cd25296848346e7e1c5414e28 (patch) | |
tree | 6d8b294f8dc0ec6c99e7199b4a304838e170e817 /target/linux/ixp4xx/patches-2.6.32/190-cambria_support.patch | |
parent | 36708d2e503466c5c298bb361c6eaccbf08f6238 (diff) | |
download | master-187ad058-55e30d152a550c7cd25296848346e7e1c5414e28.tar.gz master-187ad058-55e30d152a550c7cd25296848346e7e1c5414e28.tar.bz2 master-187ad058-55e30d152a550c7cd25296848346e7e1c5414e28.zip |
[ixp4xx] fixup cambria/avila model detection
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19448 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ixp4xx/patches-2.6.32/190-cambria_support.patch')
-rw-r--r-- | target/linux/ixp4xx/patches-2.6.32/190-cambria_support.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ixp4xx/patches-2.6.32/190-cambria_support.patch b/target/linux/ixp4xx/patches-2.6.32/190-cambria_support.patch index 2ec8b5e444..6753451bed 100644 --- a/target/linux/ixp4xx/patches-2.6.32/190-cambria_support.patch +++ b/target/linux/ixp4xx/patches-2.6.32/190-cambria_support.patch @@ -398,6 +398,7 @@ +static struct cambria_board_info * __init cambria_find_board_info(char *model) +{ + int i; ++ model[6] = '\0'; + + for (i = 0; i < ARRAY_SIZE(cambria_boards); i++) { + struct cambria_board_info *info = &cambria_boards[i]; @@ -413,7 +414,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; + @@ -421,7 +422,6 @@ + if (at24_mem_acc->read(at24_mem_acc, mac_addr, 0x0, 6) == 6) { + memcpy(&cambria_npec_data.hwaddr, mac_addr, ETH_ALEN); + } -+ + if (at24_mem_acc->read(at24_mem_acc, mac_addr, 0x6, 6) == 6) { + memcpy(&cambria_npea_data.hwaddr, mac_addr, ETH_ALEN); + } |