diff options
author | Jesse Gilles <jgilles@multitech.com> | 2012-08-22 12:19:00 -0500 |
---|---|---|
committer | Jesse Gilles <jgilles@multitech.com> | 2012-08-22 12:19:00 -0500 |
commit | 374e7fefc767e9d80ec8818bbc9872d8aa4a362d (patch) | |
tree | f0845fe78ce08bd3e564e04c53ae9b4b9c2e222c | |
parent | ef1ef2f7abcd0f235ff162f01734ce3c304063b7 (diff) | |
download | cdp-io-controller-374e7fefc767e9d80ec8818bbc9872d8aa4a362d.tar.gz cdp-io-controller-374e7fefc767e9d80ec8818bbc9872d8aa4a362d.tar.bz2 cdp-io-controller-374e7fefc767e9d80ec8818bbc9872d8aa4a362d.zip |
fix previous commit
-rw-r--r-- | io-module/mts_io.c | 28 |
1 files 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; } |