[ixp4xx] fix some compile warnings with 2.6.32
[openwrt-10.03/.git] / target / linux / ixp4xx / patches-2.6.32 / 300-avila_fetch_mac.patch
index ca8cae12ca50f1ece38574c415b6d776ca54fc40..c298834275eba6e38f6a86dabed7728a953c5f1e 100644 (file)
 +
 +static struct memory_accessor *at24_mem_acc;
 +
-+static int at24_setup(struct memory_accessor *mem_acc, void *context)
++static void at24_setup(struct memory_accessor *mem_acc, void *context)
 +{
 +      char mac_addr[ETH_ALEN];
 +      char model[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);
 +      }
 +              avila_info = avila_find_board_info(model);
 +      }
 +
-+      return 0;
 +}
 +
 +static struct at24_platform_data avila_eeprom_info = {