diff options
author | John Klug <john.klug@multitech.com> | 2018-05-02 14:44:32 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2018-05-02 14:44:32 -0500 |
commit | 472fcfb521edee5ae0da430edd82a54689e4a6d5 (patch) | |
tree | b27fbc677ccce0e9e5ff7a928ef21b526687fa80 /io-module | |
parent | 01411dc00cfc85b3a80e7ba7992f7ea390f65318 (diff) | |
download | mts-io-472fcfb521edee5ae0da430edd82a54689e4a6d5.tar.gz mts-io-472fcfb521edee5ae0da430edd82a54689e4a6d5.tar.bz2 mts-io-472fcfb521edee5ae0da430edd82a54689e4a6d5.zip |
Bad git penny: MTR gets the WiFi/GNSS pins from the gpio_pins structure2.0.2
Diffstat (limited to 'io-module')
-rw-r--r-- | io-module/mts_io.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/io-module/mts_io.c b/io-module/mts_io.c index abac4bb..1f12b86 100644 --- a/io-module/mts_io.c +++ b/io-module/mts_io.c @@ -1010,33 +1010,6 @@ mts_id_eeprom_load(void) } } - /* mtcdt gnss and wifi for future devices. We assume the same - * pinout as mtcdt on MTR. */ - if(DEVICE_CAPA(id_eeprom.capa, CAPA_WIFI)) { - attr_blength += sizeof mtcdt_0_1_wifi_bt_attributes; - } - if(DEVICE_CAPA(id_eeprom.capa, CAPA_GPS)) { - attr_blength += sizeof mtcdt_0_1_gnss_attributes; - } - if (current_blength+(sizeof(struct attribute *)) != attr_blength) { - freelater = all_attrs = kmalloc(attr_blength,GFP_KERNEL); - current_count = current_blength/(sizeof (struct attribute *)); - memcpy(all_attrs,mtrv1_0_1_platform_attributes,current_blength); - if(DEVICE_CAPA(id_eeprom.capa, CAPA_WIFI)) { - log_info("Adding WiFi/BT to mts-io driver"); - memcpy(all_attrs + current_count,mtcdt_0_1_wifi_bt_attributes,sizeof mtcdt_0_1_wifi_bt_attributes); - current_count += sizeof mtcdt_0_1_wifi_bt_attributes / (sizeof (struct attribute *)); - } - if(DEVICE_CAPA(id_eeprom.capa, CAPA_GPS)) { - log_info("Adding GPS to mts-io driver"); - attr_blength += sizeof mtcdt_0_1_gnss_attributes; - memcpy(all_attrs + current_count,mtcdt_0_1_gnss_attributes,sizeof mtcdt_0_1_gnss_attributes); - current_count += sizeof mtcdt_0_1_gnss_attributes / (sizeof (struct attribute *)); - } - all_attrs[current_count] = (struct attribute *)NULL; - mtrv1_0_1_platform_attribute_group.attrs = all_attrs; - } - attr_group = &mtrv1_0_1_platform_attribute_group; gpio_pins = gpio_pins_mtrv1_0_1; mts_hw_version = MTRV1_0_1; |