1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-06 11:30:43 +03:00

[ixp4xx] fixup cambria/avila model detection

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19448 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
kaloz 2010-01-31 13:46:52 +00:00
parent 42e1fa9f9b
commit 21edffbfd7
2 changed files with 4 additions and 4 deletions

View File

@ -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);
+ }

View File

@ -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);
+ }