Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging:iio:accel:sca3000 Move out of staging.

Now the driver is in a reasonable state, lets get it (finally) out
of staging.

Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Reviewed-by: Lars-Peter Clausen <lars@metafoo.de>

+14 -13
+12
drivers/iio/accel/Kconfig
··· 303 303 To compile this driver as a module, choose M here: the module will be 304 304 called mxc6255. 305 305 306 + config SCA3000 307 + select IIO_BUFFER 308 + select IIO_KFIFO_BUF 309 + depends on SPI 310 + tristate "VTI SCA3000 series accelerometers" 311 + help 312 + Say Y here to build support for the VTI SCA3000 series of SPI 313 + accelerometers. These devices use a hardware ring buffer. 314 + 315 + To compile this driver as a module, say M here: the module will be 316 + called sca3000. 317 + 306 318 config STK8312 307 319 tristate "Sensortek STK8312 3-Axis Accelerometer Driver" 308 320 depends on I2C
+2
drivers/iio/accel/Makefile
··· 35 35 obj-$(CONFIG_MXC4005) += mxc4005.o 36 36 obj-$(CONFIG_MXC6255) += mxc6255.o 37 37 38 + obj-$(CONFIG_SCA3000) += sca3000.o 39 + 38 40 obj-$(CONFIG_STK8312) += stk8312.o 39 41 obj-$(CONFIG_STK8BA50) += stk8ba50.o 40 42
-11
drivers/staging/iio/accel/Kconfig
··· 51 51 To compile this driver as a module, say M here: the module will be 52 52 called adis16240. 53 53 54 - config SCA3000 55 - select IIO_BUFFER 56 - select IIO_KFIFO_BUF 57 - depends on SPI 58 - tristate "VTI SCA3000 series accelerometers" 59 - help 60 - Say Y here to build support for the VTI SCA3000 series of SPI 61 - accelerometers. These devices use a hardware ring buffer. 62 - 63 - To compile this driver as a module, say M here: the module will be 64 - called sca3000. 65 54 endmenu
-2
drivers/staging/iio/accel/Makefile
··· 13 13 14 14 adis16240-y := adis16240_core.o 15 15 obj-$(CONFIG_ADIS16240) += adis16240.o 16 - 17 - obj-$(CONFIG_SCA3000) += sca3000.o
drivers/staging/iio/accel/sca3000.c drivers/iio/accel/sca3000.c