]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging:iio:adis16130: Move out of staging
authorLars-Peter Clausen <lars@metafoo.de>
Mon, 10 Jun 2013 14:00:00 +0000 (15:00 +0100)
committerJonathan Cameron <jic23@kernel.org>
Tue, 11 Jun 2013 19:34:36 +0000 (20:34 +0100)
The adis16130 driver is fairly simple and it a good shape now, so move it out of
staging. Remove an outdated FIXME along the way.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/gyro/Kconfig
drivers/iio/gyro/Makefile
drivers/iio/gyro/adis16130.c [moved from drivers/staging/iio/gyro/adis16130_core.c with 99% similarity]
drivers/staging/iio/gyro/Kconfig
drivers/staging/iio/gyro/Makefile

index b8daf1b2ea06ebe0c7b55c120fee6a83eaa03364..8498e9dcda6859a4ff88f40ed46007bc37ae3ac9 100644 (file)
@@ -10,6 +10,13 @@ config ADIS16080
          Say yes here to build support for Analog Devices ADIS16080, ADIS16100 Yaw
          Rate Gyroscope with SPI.
 
+config ADIS16130
+       tristate "Analog Devices ADIS16130 High Precision Angular Rate Sensor driver"
+       depends on SPI
+       help
+         Say yes here to build support for Analog Devices ADIS16130 High Precision
+         Angular Rate Sensor driver.
+
 config ADIS16136
        tristate "Analog devices ADIS16136 and similar gyroscopes driver"
        depends on SPI_MASTER
index 225d289082e6a81d36175041aaec9ed1c3fd85a6..e9dc034aa18bc2deb6907c68b54e22b0b1490d26 100644 (file)
@@ -3,6 +3,7 @@
 #
 
 obj-$(CONFIG_ADIS16080) += adis16080.o
+obj-$(CONFIG_ADIS16130) += adis16130.o
 obj-$(CONFIG_ADIS16136) += adis16136.o
 obj-$(CONFIG_ADXRS450) += adxrs450.o
 
similarity index 99%
rename from drivers/staging/iio/gyro/adis16130_core.c
rename to drivers/iio/gyro/adis16130.c
index 89794350be61fcc9af6fb88ac556aa869b5b03dd..129acdf801a407e3d7cf1db7dbffdd9d6925b46c 100644 (file)
@@ -183,7 +183,6 @@ error_ret:
        return ret;
 }
 
-/* fixme, confirm ordering in this function */
 static int adis16130_remove(struct spi_device *spi)
 {
        iio_device_unregister(spi_get_drvdata(spi));
index 836066287192d3ef5e8ead829928032be74e0971..b4333715536e2d82d3a8d90f12785416118abd68 100644 (file)
@@ -10,13 +10,6 @@ config ADIS16060
          Say yes here to build support for Analog Devices adis16060 wide bandwidth
          yaw rate gyroscope with SPI.
 
-config ADIS16130
-       tristate "Analog Devices ADIS16130 High Precision Angular Rate Sensor driver"
-       depends on SPI
-       help
-         Say yes here to build support for Analog Devices ADIS16130 High Precision
-         Angular Rate Sensor driver.
-
 config ADIS16260
        tristate "Analog Devices ADIS16260 Digital Gyroscope Sensor SPI driver"
        depends on SPI
index 98e650061a3a8cb5e4f7bab9029fc9a1a024c5ef..975f95b141da3576fd9982d977a7d65dba229110 100644 (file)
@@ -5,8 +5,5 @@
 adis16060-y             := adis16060_core.o
 obj-$(CONFIG_ADIS16060) += adis16060.o
 
-adis16130-y             := adis16130_core.o
-obj-$(CONFIG_ADIS16130) += adis16130.o
-
 adis16260-y             := adis16260_core.o
 obj-$(CONFIG_ADIS16260) += adis16260.o