From 374e7fefc767e9d80ec8818bbc9872d8aa4a362d Mon Sep 17 00:00:00 2001 From: Jesse Gilles Date: Wed, 22 Aug 2012 12:19:00 -0500 Subject: fix previous commit --- io-module/mts_io.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/io-module/mts_io.c b/io-module/mts_io.c index b1889f0..30800d3 100644 --- a/io-module/mts_io.c +++ b/io-module/mts_io.c @@ -813,22 +813,22 @@ static int mts_id_eeprom_load(void) log_info("capa-din: %s", DEVICE_CAPA(id_eeprom.capa, CAPA_DIN) ? "yes" : "no"); log_info("capa-dout: %s", DEVICE_CAPA(id_eeprom.capa, CAPA_DOUT) ? "yes" : "no"); log_info("capa-adc: %s", DEVICE_CAPA(id_eeprom.capa, CAPA_ADC) ? "yes" : "no"); - log_info("capa-wifi: %s", DEVICE_CAPA(id_eeprom->capa, CAPA_WIFI) ? "yes" : "no"); - log_info("capa-bluetooth: %s", DEVICE_CAPA(id_eeprom->capa, CAPA_BLUETOOTH) ? "yes" : "no"); + log_info("capa-wifi: %s", DEVICE_CAPA(id_eeprom.capa, CAPA_WIFI) ? "yes" : "no"); + log_info("capa-bluetooth: %s", DEVICE_CAPA(id_eeprom.capa, CAPA_BLUETOOTH) ? "yes" : "no"); log_info("mac-bluetooth: %02X:%02X:%02X:%02X:%02X:%02X", - id_eeprom->mac_bluetooth[0], - id_eeprom->mac_bluetooth[1], - id_eeprom->mac_bluetooth[2], - id_eeprom->mac_bluetooth[3], - id_eeprom->mac_bluetooth[4], - id_eeprom->mac_bluetooth[5]); + id_eeprom.mac_bluetooth[0], + id_eeprom.mac_bluetooth[1], + id_eeprom.mac_bluetooth[2], + id_eeprom.mac_bluetooth[3], + id_eeprom.mac_bluetooth[4], + id_eeprom.mac_bluetooth[5]); log_info("mac-wifi: %02X:%02X:%02X:%02X:%02X:%02X", - id_eeprom->mac_wifi[0], - id_eeprom->mac_wifi[1], - id_eeprom->mac_wifi[2], - id_eeprom->mac_wifi[3], - id_eeprom->mac_wifi[4], - id_eeprom->mac_wifi[5]); + id_eeprom.mac_wifi[0], + id_eeprom.mac_wifi[1], + id_eeprom.mac_wifi[2], + id_eeprom.mac_wifi[3], + id_eeprom.mac_wifi[4], + id_eeprom.mac_wifi[5]); return 0; } -- cgit v1.2.3