forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move lis3lv02d drivers to drivers/misc
The lis3lv02d drivers aren't hardware monitoring drivers, so the don't belong to drivers/hwmon. Move them to drivers/misc, short of a better home. Signed-off-by: Jean Delvare <[email protected]> Acked-by: Guenter Roeck <[email protected]> Acked-by: Eric Piel <[email protected]> Acked-by: Jonathan Cameron <[email protected]> Tested-by: Eric Piel <[email protected]> Tested-by: Takashi Iwai <[email protected]>
- Loading branch information
Jean Delvare
authored and
Jean Delvare
committed
Mar 21, 2011
1 parent
efcfed9
commit ff60667
Showing
13 changed files
with
59 additions
and
51 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3913,8 +3913,8 @@ S: Supported | |
LIS3LV02D ACCELEROMETER DRIVER | ||
M: Eric Piel <[email protected]> | ||
S: Maintained | ||
F: Documentation/hwmon/lis3lv02d | ||
F: drivers/hwmon/lis3lv02d.* | ||
F: Documentation/misc-devices/lis3lv02d | ||
F: drivers/misc/lis3lv02d/ | ||
|
||
LLC (802.2) | ||
M: Arnaldo Carvalho de Melo <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# | ||
# STMicroelectonics LIS3LV02D and similar accelerometers | ||
# | ||
|
||
config SENSORS_LIS3_SPI | ||
tristate "STMicroeletronics LIS3LV02Dx three-axis digital accelerometer (SPI)" | ||
depends on !ACPI && SPI_MASTER && INPUT | ||
select SENSORS_LIS3LV02D | ||
default n | ||
help | ||
This driver provides support for the LIS3LV02Dx accelerometer connected | ||
via SPI. The accelerometer data is readable via | ||
/sys/devices/platform/lis3lv02d. | ||
|
||
This driver also provides an absolute input class device, allowing | ||
the laptop to act as a pinball machine-esque joystick. | ||
|
||
This driver can also be built as modules. If so, the core module | ||
will be called lis3lv02d and a specific module for the SPI transport | ||
is called lis3lv02d_spi. | ||
|
||
config SENSORS_LIS3_I2C | ||
tristate "STMicroeletronics LIS3LV02Dx three-axis digital accelerometer (I2C)" | ||
depends on I2C && INPUT | ||
select SENSORS_LIS3LV02D | ||
default n | ||
help | ||
This driver provides support for the LIS3LV02Dx accelerometer connected | ||
via I2C. The accelerometer data is readable via | ||
/sys/devices/platform/lis3lv02d. | ||
|
||
This driver also provides an absolute input class device, allowing | ||
the device to act as a pinball machine-esque joystick. | ||
|
||
This driver can also be built as modules. If so, the core module | ||
will be called lis3lv02d and a specific module for the I2C transport | ||
is called lis3lv02d_i2c. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# | ||
# STMicroelectonics LIS3LV02D and similar accelerometers | ||
# | ||
|
||
obj-$(CONFIG_SENSORS_LIS3LV02D) += lis3lv02d.o | ||
obj-$(CONFIG_SENSORS_LIS3_SPI) += lis3lv02d_spi.o | ||
obj-$(CONFIG_SENSORS_LIS3_I2C) += lis3lv02d_i2c.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters