fixup cambria/avila model detection
authorImre Kaloz <kaloz@openwrt.org>
Sun, 31 Jan 2010 13:46:52 +0000 (13:46 +0000)
committerImre Kaloz <kaloz@openwrt.org>
Sun, 31 Jan 2010 13:46:52 +0000 (13:46 +0000)
SVN-Revision: 19448

target/linux/ixp4xx/patches-2.6.32/190-cambria_support.patch
target/linux/ixp4xx/patches-2.6.32/300-avila_fetch_mac.patch

index 2ec8b5e444d10e6cf54700d6dbe1e3f8beaacf6f..6753451bed5cfc0531355ce61208ee0b32ead3e7 100644 (file)
 +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];
 +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;
 +
 +      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);
 +      }
index c298834275eba6e38f6a86dabed7728a953c5f1e..d3ccb045c8cf89ad5af4096a326aacc05392878e 100644 (file)
 +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];
 +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;
 +
 +      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);
 +      }