diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-01-14 12:08:38 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-01-14 12:08:38 -0500 |
| commit | b87fc3e6e2e972556af94c55b7e015232598a1aa (patch) | |
| tree | cff3196f1ee591a47375b6f00bed2990e8961d35 /drivers/iio | |
| parent | 46fed0a57cd2b1022b556394ef586632a5b2e4e7 (diff) | |
| parent | 397c60668aa5ae7130b5ad4e73870d7b8a787085 (diff) | |
Merge tag 'staging-3.8-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging
Pull staging fixes from Greg Kroah-Hartman:
"Here are a number of small fixes to staging drivers for your 3.8-rc3
tree.
Well, the omapdrm fixes aren't really "small" but they were waiting on
a number of other drm patches to go in through the drm tree, and got
delayed by my vacation over the holidays. They are totally
self-contained, everyone involved have acked them, and they fix issues
that people have been having with the driver.
Other than that one, it's a bunch of tiny bugfixes for a number of
reported issues.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>"
* tag 'staging-3.8-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging: (36 commits)
staging: zram: fix invalid memory references during disk write
staging: tidspbridge: use prepare/unprepare on dsp clocks
staging: tidspbridge: Fix build breakage due to splitting CM functions.
staging: comedi: comedi_test: fix race when cancelling command
staging: comedi: Kconfig: COMEDI_NI_AT_A2150 should select COMEDI_FC
staging: comedi: prevent auto-unconfig of manually configured devices
staging: comedi: fix minimum AO period for NI 625x and NI 628x
staging: vme_pio2: fix oops on module unloading
staging: speakup: avoid out-of-range access in synth_add()
staging: speakup: avoid out-of-range access in synth_init()
staging: rtl8192e: Fix failure to check pci_map_single()
staging: rtl8187se: Fix failure to check pci_map_single()
staging: drm/imx: fix double free bug in error path
staging: drm/imx: several bug fixes
staging: drm/imx: check return value of ipu_reset()
staging: drm/omap: fix flags in dma buf exporting
staging: drm/omap: use omapdss low level API
staging/fwserial: Update TODO file per reviewer comments
staging/fwserial: Limit tx/rx to 1394-2008 spec maximum
staging/fwserial: Refine Kconfig help text
...
Diffstat (limited to 'drivers/iio')
| -rw-r--r-- | drivers/iio/accel/Kconfig | 1 | ||||
| -rw-r--r-- | drivers/iio/adc/ad7266.c | 6 | ||||
| -rw-r--r-- | drivers/iio/adc/at91_adc.c | 2 | ||||
| -rw-r--r-- | drivers/iio/adc/max1363.c | 13 | ||||
| -rw-r--r-- | drivers/iio/common/hid-sensors/Kconfig | 13 | ||||
| -rw-r--r-- | drivers/iio/common/hid-sensors/Makefile | 3 | ||||
| -rw-r--r-- | drivers/iio/dac/ad5380.c | 6 | ||||
| -rw-r--r-- | drivers/iio/dac/ad5446.c | 6 | ||||
| -rw-r--r-- | drivers/iio/dac/ad5504.c | 6 | ||||
| -rw-r--r-- | drivers/iio/dac/ad5624r_spi.c | 6 | ||||
| -rw-r--r-- | drivers/iio/dac/ad5686.c | 6 | ||||
| -rw-r--r-- | drivers/iio/dac/ad5791.c | 13 | ||||
| -rw-r--r-- | drivers/iio/frequency/adf4350.c | 2 | ||||
| -rw-r--r-- | drivers/iio/gyro/Kconfig | 1 | ||||
| -rw-r--r-- | drivers/iio/light/Kconfig | 1 | ||||
| -rw-r--r-- | drivers/iio/magnetometer/Kconfig | 1 |
16 files changed, 67 insertions, 19 deletions
diff --git a/drivers/iio/accel/Kconfig b/drivers/iio/accel/Kconfig index fe4bcd7c5b1..05e996fafc9 100644 --- a/drivers/iio/accel/Kconfig +++ b/drivers/iio/accel/Kconfig | |||
| @@ -8,6 +8,7 @@ config HID_SENSOR_ACCEL_3D | |||
| 8 | select IIO_BUFFER | 8 | select IIO_BUFFER |
| 9 | select IIO_TRIGGERED_BUFFER | 9 | select IIO_TRIGGERED_BUFFER |
| 10 | select HID_SENSOR_IIO_COMMON | 10 | select HID_SENSOR_IIO_COMMON |
| 11 | select HID_SENSOR_IIO_TRIGGER | ||
| 11 | tristate "HID Accelerometers 3D" | 12 | tristate "HID Accelerometers 3D" |
| 12 | help | 13 | help |
| 13 | Say yes here to build support for the HID SENSOR | 14 | Say yes here to build support for the HID SENSOR |
diff --git a/drivers/iio/adc/ad7266.c b/drivers/iio/adc/ad7266.c index 4a5f639bc68..bbad9b94cd7 100644 --- a/drivers/iio/adc/ad7266.c +++ b/drivers/iio/adc/ad7266.c | |||
| @@ -411,7 +411,11 @@ static int ad7266_probe(struct spi_device *spi) | |||
| 411 | if (ret) | 411 | if (ret) |
| 412 | goto error_put_reg; | 412 | goto error_put_reg; |
| 413 | 413 | ||
| 414 | st->vref_uv = regulator_get_voltage(st->reg); | 414 | ret = regulator_get_voltage(st->reg); |
| 415 | if (ret < 0) | ||
| 416 | goto error_disable_reg; | ||
| 417 | |||
| 418 | st->vref_uv = ret; | ||
| 415 | } else { | 419 | } else { |
| 416 | /* Use internal reference */ | 420 | /* Use internal reference */ |
| 417 | st->vref_uv = 2500000; | 421 | st->vref_uv = 2500000; |
diff --git a/drivers/iio/adc/at91_adc.c b/drivers/iio/adc/at91_adc.c index 04b013561f0..a526c0e3aaa 100644 --- a/drivers/iio/adc/at91_adc.c +++ b/drivers/iio/adc/at91_adc.c | |||
| @@ -80,7 +80,7 @@ static irqreturn_t at91_adc_trigger_handler(int irq, void *p) | |||
| 80 | *timestamp = pf->timestamp; | 80 | *timestamp = pf->timestamp; |
| 81 | } | 81 | } |
| 82 | 82 | ||
| 83 | iio_push_to_buffers(indio_dev, (u8 *)st->buffer); | 83 | iio_push_to_buffers(idev, (u8 *)st->buffer); |
| 84 | 84 | ||
| 85 | iio_trigger_notify_done(idev->trig); | 85 | iio_trigger_notify_done(idev->trig); |
| 86 | 86 | ||
diff --git a/drivers/iio/adc/max1363.c b/drivers/iio/adc/max1363.c index b5669be6f39..03b25b3dc71 100644 --- a/drivers/iio/adc/max1363.c +++ b/drivers/iio/adc/max1363.c | |||
| @@ -1605,19 +1605,20 @@ static int max1363_probe(struct i2c_client *client, | |||
| 1605 | 1605 | ||
| 1606 | return 0; | 1606 | return 0; |
| 1607 | error_free_irq: | 1607 | error_free_irq: |
| 1608 | free_irq(st->client->irq, indio_dev); | 1608 | if (client->irq) |
| 1609 | free_irq(st->client->irq, indio_dev); | ||
| 1609 | error_uninit_buffer: | 1610 | error_uninit_buffer: |
| 1610 | iio_buffer_unregister(indio_dev); | 1611 | iio_buffer_unregister(indio_dev); |
| 1611 | error_cleanup_buffer: | 1612 | error_cleanup_buffer: |
| 1612 | max1363_buffer_cleanup(indio_dev); | 1613 | max1363_buffer_cleanup(indio_dev); |
| 1613 | error_free_available_scan_masks: | 1614 | error_free_available_scan_masks: |
| 1614 | kfree(indio_dev->available_scan_masks); | 1615 | kfree(indio_dev->available_scan_masks); |
| 1615 | error_unregister_map: | ||
| 1616 | iio_map_array_unregister(indio_dev, client->dev.platform_data); | ||
| 1617 | error_disable_reg: | 1616 | error_disable_reg: |
| 1618 | regulator_disable(st->reg); | 1617 | regulator_disable(st->reg); |
| 1619 | error_put_reg: | 1618 | error_put_reg: |
| 1620 | regulator_put(st->reg); | 1619 | regulator_put(st->reg); |
| 1620 | error_unregister_map: | ||
| 1621 | iio_map_array_unregister(indio_dev, client->dev.platform_data); | ||
| 1621 | error_free_device: | 1622 | error_free_device: |
| 1622 | iio_device_free(indio_dev); | 1623 | iio_device_free(indio_dev); |
| 1623 | error_out: | 1624 | error_out: |
| @@ -1635,10 +1636,8 @@ static int max1363_remove(struct i2c_client *client) | |||
| 1635 | iio_buffer_unregister(indio_dev); | 1636 | iio_buffer_unregister(indio_dev); |
| 1636 | max1363_buffer_cleanup(indio_dev); | 1637 | max1363_buffer_cleanup(indio_dev); |
| 1637 | kfree(indio_dev->available_scan_masks); | 1638 | kfree(indio_dev->available_scan_masks); |
| 1638 | if (!IS_ERR(st->reg)) { | 1639 | regulator_disable(st->reg); |
| 1639 | regulator_disable(st->reg); | 1640 | regulator_put(st->reg); |
| 1640 | regulator_put(st->reg); | ||
| 1641 | } | ||
| 1642 | iio_map_array_unregister(indio_dev, client->dev.platform_data); | 1641 | iio_map_array_unregister(indio_dev, client->dev.platform_data); |
| 1643 | iio_device_free(indio_dev); | 1642 | iio_device_free(indio_dev); |
| 1644 | 1643 | ||
diff --git a/drivers/iio/common/hid-sensors/Kconfig b/drivers/iio/common/hid-sensors/Kconfig index ae10778da7a..1178121b55b 100644 --- a/drivers/iio/common/hid-sensors/Kconfig +++ b/drivers/iio/common/hid-sensors/Kconfig | |||
| @@ -6,7 +6,7 @@ menu "Hid Sensor IIO Common" | |||
| 6 | config HID_SENSOR_IIO_COMMON | 6 | config HID_SENSOR_IIO_COMMON |
| 7 | tristate "Common modules for all HID Sensor IIO drivers" | 7 | tristate "Common modules for all HID Sensor IIO drivers" |
| 8 | depends on HID_SENSOR_HUB | 8 | depends on HID_SENSOR_HUB |
| 9 | select IIO_TRIGGER if IIO_BUFFER | 9 | select HID_SENSOR_IIO_TRIGGER if IIO_BUFFER |
| 10 | help | 10 | help |
| 11 | Say yes here to build support for HID sensor to use | 11 | Say yes here to build support for HID sensor to use |
| 12 | HID sensor common processing for attributes and IIO triggers. | 12 | HID sensor common processing for attributes and IIO triggers. |
| @@ -14,6 +14,17 @@ config HID_SENSOR_IIO_COMMON | |||
| 14 | HID sensor drivers, this module contains processing for those | 14 | HID sensor drivers, this module contains processing for those |
| 15 | attributes. | 15 | attributes. |
| 16 | 16 | ||
| 17 | config HID_SENSOR_IIO_TRIGGER | ||
| 18 | tristate "Common module (trigger) for all HID Sensor IIO drivers" | ||
| 19 | depends on HID_SENSOR_HUB && HID_SENSOR_IIO_COMMON | ||
| 20 | select IIO_TRIGGER | ||
| 21 | help | ||
| 22 | Say yes here to build trigger support for HID sensors. | ||
| 23 | Triggers will be send if all requested attributes were read. | ||
| 24 | |||
| 25 | If this driver is compiled as a module, it will be named | ||
| 26 | hid-sensor-trigger. | ||
| 27 | |||
| 17 | config HID_SENSOR_ENUM_BASE_QUIRKS | 28 | config HID_SENSOR_ENUM_BASE_QUIRKS |
| 18 | bool "ENUM base quirks for HID Sensor IIO drivers" | 29 | bool "ENUM base quirks for HID Sensor IIO drivers" |
| 19 | depends on HID_SENSOR_IIO_COMMON | 30 | depends on HID_SENSOR_IIO_COMMON |
diff --git a/drivers/iio/common/hid-sensors/Makefile b/drivers/iio/common/hid-sensors/Makefile index 1f463e00c24..22e7c5a8232 100644 --- a/drivers/iio/common/hid-sensors/Makefile +++ b/drivers/iio/common/hid-sensors/Makefile | |||
| @@ -3,4 +3,5 @@ | |||
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | obj-$(CONFIG_HID_SENSOR_IIO_COMMON) += hid-sensor-iio-common.o | 5 | obj-$(CONFIG_HID_SENSOR_IIO_COMMON) += hid-sensor-iio-common.o |
| 6 | hid-sensor-iio-common-y := hid-sensor-attributes.o hid-sensor-trigger.o | 6 | obj-$(CONFIG_HID_SENSOR_IIO_TRIGGER) += hid-sensor-trigger.o |
| 7 | hid-sensor-iio-common-y := hid-sensor-attributes.o | ||
diff --git a/drivers/iio/dac/ad5380.c b/drivers/iio/dac/ad5380.c index 6c7898c765d..483fc379a2d 100644 --- a/drivers/iio/dac/ad5380.c +++ b/drivers/iio/dac/ad5380.c | |||
| @@ -406,7 +406,11 @@ static int ad5380_probe(struct device *dev, struct regmap *regmap, | |||
| 406 | goto error_free_reg; | 406 | goto error_free_reg; |
| 407 | } | 407 | } |
| 408 | 408 | ||
| 409 | st->vref = regulator_get_voltage(st->vref_reg); | 409 | ret = regulator_get_voltage(st->vref_reg); |
| 410 | if (ret < 0) | ||
| 411 | goto error_disable_reg; | ||
| 412 | |||
| 413 | st->vref = ret; | ||
| 410 | } else { | 414 | } else { |
| 411 | st->vref = st->chip_info->int_vref; | 415 | st->vref = st->chip_info->int_vref; |
| 412 | ctrl |= AD5380_CTRL_INT_VREF_EN; | 416 | ctrl |= AD5380_CTRL_INT_VREF_EN; |
diff --git a/drivers/iio/dac/ad5446.c b/drivers/iio/dac/ad5446.c index 29f653dab2f..f5583aedfb5 100644 --- a/drivers/iio/dac/ad5446.c +++ b/drivers/iio/dac/ad5446.c | |||
| @@ -226,7 +226,11 @@ static int ad5446_probe(struct device *dev, const char *name, | |||
| 226 | if (ret) | 226 | if (ret) |
| 227 | goto error_put_reg; | 227 | goto error_put_reg; |
| 228 | 228 | ||
| 229 | voltage_uv = regulator_get_voltage(reg); | 229 | ret = regulator_get_voltage(reg); |
| 230 | if (ret < 0) | ||
| 231 | goto error_disable_reg; | ||
| 232 | |||
| 233 | voltage_uv = ret; | ||
| 230 | } | 234 | } |
| 231 | 235 | ||
| 232 | indio_dev = iio_device_alloc(sizeof(*st)); | 236 | indio_dev = iio_device_alloc(sizeof(*st)); |
diff --git a/drivers/iio/dac/ad5504.c b/drivers/iio/dac/ad5504.c index b2a31a0468e..0661829f277 100644 --- a/drivers/iio/dac/ad5504.c +++ b/drivers/iio/dac/ad5504.c | |||
| @@ -296,7 +296,11 @@ static int ad5504_probe(struct spi_device *spi) | |||
| 296 | if (ret) | 296 | if (ret) |
| 297 | goto error_put_reg; | 297 | goto error_put_reg; |
| 298 | 298 | ||
| 299 | voltage_uv = regulator_get_voltage(reg); | 299 | ret = regulator_get_voltage(reg); |
| 300 | if (ret < 0) | ||
| 301 | goto error_disable_reg; | ||
| 302 | |||
| 303 | voltage_uv = ret; | ||
| 300 | } | 304 | } |
| 301 | 305 | ||
| 302 | spi_set_drvdata(spi, indio_dev); | 306 | spi_set_drvdata(spi, indio_dev); |
diff --git a/drivers/iio/dac/ad5624r_spi.c b/drivers/iio/dac/ad5624r_spi.c index e9947969f9f..f6e116627b7 100644 --- a/drivers/iio/dac/ad5624r_spi.c +++ b/drivers/iio/dac/ad5624r_spi.c | |||
| @@ -238,7 +238,11 @@ static int ad5624r_probe(struct spi_device *spi) | |||
| 238 | if (ret) | 238 | if (ret) |
| 239 | goto error_put_reg; | 239 | goto error_put_reg; |
| 240 | 240 | ||
| 241 | voltage_uv = regulator_get_voltage(st->reg); | 241 | ret = regulator_get_voltage(st->reg); |
| 242 | if (ret < 0) | ||
| 243 | goto error_disable_reg; | ||
| 244 | |||
| 245 | voltage_uv = ret; | ||
| 242 | } | 246 | } |
| 243 | 247 | ||
| 244 | spi_set_drvdata(spi, indio_dev); | 248 | spi_set_drvdata(spi, indio_dev); |
diff --git a/drivers/iio/dac/ad5686.c b/drivers/iio/dac/ad5686.c index 36e51382ae5..ca9609d7a15 100644 --- a/drivers/iio/dac/ad5686.c +++ b/drivers/iio/dac/ad5686.c | |||
| @@ -332,7 +332,11 @@ static int ad5686_probe(struct spi_device *spi) | |||
| 332 | if (ret) | 332 | if (ret) |
| 333 | goto error_put_reg; | 333 | goto error_put_reg; |
| 334 | 334 | ||
| 335 | voltage_uv = regulator_get_voltage(st->reg); | 335 | ret = regulator_get_voltage(st->reg); |
| 336 | if (ret < 0) | ||
| 337 | goto error_disable_reg; | ||
| 338 | |||
| 339 | voltage_uv = ret; | ||
| 336 | } | 340 | } |
| 337 | 341 | ||
| 338 | st->chip_info = | 342 | st->chip_info = |
diff --git a/drivers/iio/dac/ad5791.c b/drivers/iio/dac/ad5791.c index c84180f2313..6407b5407dd 100644 --- a/drivers/iio/dac/ad5791.c +++ b/drivers/iio/dac/ad5791.c | |||
| @@ -365,7 +365,11 @@ static int ad5791_probe(struct spi_device *spi) | |||
| 365 | if (ret) | 365 | if (ret) |
| 366 | goto error_put_reg_pos; | 366 | goto error_put_reg_pos; |
| 367 | 367 | ||
| 368 | pos_voltage_uv = regulator_get_voltage(st->reg_vdd); | 368 | ret = regulator_get_voltage(st->reg_vdd); |
| 369 | if (ret < 0) | ||
| 370 | goto error_disable_reg_pos; | ||
| 371 | |||
| 372 | pos_voltage_uv = ret; | ||
| 369 | } | 373 | } |
| 370 | 374 | ||
| 371 | st->reg_vss = regulator_get(&spi->dev, "vss"); | 375 | st->reg_vss = regulator_get(&spi->dev, "vss"); |
| @@ -374,7 +378,11 @@ static int ad5791_probe(struct spi_device *spi) | |||
| 374 | if (ret) | 378 | if (ret) |
| 375 | goto error_put_reg_neg; | 379 | goto error_put_reg_neg; |
| 376 | 380 | ||
| 377 | neg_voltage_uv = regulator_get_voltage(st->reg_vss); | 381 | ret = regulator_get_voltage(st->reg_vss); |
| 382 | if (ret < 0) | ||
| 383 | goto error_disable_reg_neg; | ||
| 384 | |||
| 385 | neg_voltage_uv = ret; | ||
| 378 | } | 386 | } |
| 379 | 387 | ||
| 380 | st->pwr_down = true; | 388 | st->pwr_down = true; |
| @@ -428,6 +436,7 @@ error_put_reg_neg: | |||
| 428 | if (!IS_ERR(st->reg_vss)) | 436 | if (!IS_ERR(st->reg_vss)) |
| 429 | regulator_put(st->reg_vss); | 437 | regulator_put(st->reg_vss); |
| 430 | 438 | ||
| 439 | error_disable_reg_pos: | ||
| 431 | if (!IS_ERR(st->reg_vdd)) | 440 | if (!IS_ERR(st->reg_vdd)) |
| 432 | regulator_disable(st->reg_vdd); | 441 | regulator_disable(st->reg_vdd); |
| 433 | error_put_reg_pos: | 442 | error_put_reg_pos: |
diff --git a/drivers/iio/frequency/adf4350.c b/drivers/iio/frequency/adf4350.c index e5033b4cfba..a884252ac66 100644 --- a/drivers/iio/frequency/adf4350.c +++ b/drivers/iio/frequency/adf4350.c | |||
| @@ -173,7 +173,7 @@ static int adf4350_set_freq(struct adf4350_state *st, unsigned long long freq) | |||
| 173 | } while ((st->r1_mod > ADF4350_MAX_MODULUS) && r_cnt); | 173 | } while ((st->r1_mod > ADF4350_MAX_MODULUS) && r_cnt); |
| 174 | } while (r_cnt == 0); | 174 | } while (r_cnt == 0); |
| 175 | 175 | ||
| 176 | tmp = freq * (u64)st->r1_mod + (st->fpfd > 1); | 176 | tmp = freq * (u64)st->r1_mod + (st->fpfd >> 1); |
| 177 | do_div(tmp, st->fpfd); /* Div round closest (n + d/2)/d */ | 177 | do_div(tmp, st->fpfd); /* Div round closest (n + d/2)/d */ |
| 178 | st->r0_fract = do_div(tmp, st->r1_mod); | 178 | st->r0_fract = do_div(tmp, st->r1_mod); |
| 179 | st->r0_int = tmp; | 179 | st->r0_int = tmp; |
diff --git a/drivers/iio/gyro/Kconfig b/drivers/iio/gyro/Kconfig index 48ed1483ff2..96b68f63a90 100644 --- a/drivers/iio/gyro/Kconfig +++ b/drivers/iio/gyro/Kconfig | |||
| @@ -17,6 +17,7 @@ config HID_SENSOR_GYRO_3D | |||
| 17 | select IIO_BUFFER | 17 | select IIO_BUFFER |
| 18 | select IIO_TRIGGERED_BUFFER | 18 | select IIO_TRIGGERED_BUFFER |
| 19 | select HID_SENSOR_IIO_COMMON | 19 | select HID_SENSOR_IIO_COMMON |
| 20 | select HID_SENSOR_IIO_TRIGGER | ||
| 20 | tristate "HID Gyroscope 3D" | 21 | tristate "HID Gyroscope 3D" |
| 21 | help | 22 | help |
| 22 | Say yes here to build support for the HID SENSOR | 23 | Say yes here to build support for the HID SENSOR |
diff --git a/drivers/iio/light/Kconfig b/drivers/iio/light/Kconfig index 1763c9bcb98..dbf80abc834 100644 --- a/drivers/iio/light/Kconfig +++ b/drivers/iio/light/Kconfig | |||
| @@ -47,6 +47,7 @@ config HID_SENSOR_ALS | |||
| 47 | select IIO_BUFFER | 47 | select IIO_BUFFER |
| 48 | select IIO_TRIGGERED_BUFFER | 48 | select IIO_TRIGGERED_BUFFER |
| 49 | select HID_SENSOR_IIO_COMMON | 49 | select HID_SENSOR_IIO_COMMON |
| 50 | select HID_SENSOR_IIO_TRIGGER | ||
| 50 | tristate "HID ALS" | 51 | tristate "HID ALS" |
| 51 | help | 52 | help |
| 52 | Say yes here to build support for the HID SENSOR | 53 | Say yes here to build support for the HID SENSOR |
diff --git a/drivers/iio/magnetometer/Kconfig b/drivers/iio/magnetometer/Kconfig index c1f0cdd5703..ff11d68225c 100644 --- a/drivers/iio/magnetometer/Kconfig +++ b/drivers/iio/magnetometer/Kconfig | |||
| @@ -8,6 +8,7 @@ config HID_SENSOR_MAGNETOMETER_3D | |||
| 8 | select IIO_BUFFER | 8 | select IIO_BUFFER |
| 9 | select IIO_TRIGGERED_BUFFER | 9 | select IIO_TRIGGERED_BUFFER |
| 10 | select HID_SENSOR_IIO_COMMON | 10 | select HID_SENSOR_IIO_COMMON |
| 11 | select HID_SENSOR_IIO_TRIGGER | ||
| 11 | tristate "HID Magenetometer 3D" | 12 | tristate "HID Magenetometer 3D" |
| 12 | help | 13 | help |
| 13 | Say yes here to build support for the HID SENSOR | 14 | Say yes here to build support for the HID SENSOR |
