mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 04:32:03 +00:00
bd5f47ec96
The ams driver isn't a hardware monitoring driver, so it shouldn't live under driver/hwmon. drivers/macintosh seems much more appropriate, as the driver is only useful on PowerBooks and iBooks. Signed-off-by: Jean Delvare <khali@linux-fr.org> Cc: Guenter Roeck <guenter.roeck@ericsson.com> Cc: Stelian Pop <stelian@popies.net> Cc: Michael Hanselmann <linux-kernel@hansmi.ch> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Grant Likely <grant.likely@secretlab.ca>
9 lines
207 B
Makefile
9 lines
207 B
Makefile
#
|
|
# Makefile for Apple Motion Sensor driver
|
|
#
|
|
|
|
ams-y := ams-core.o ams-input.o
|
|
ams-$(CONFIG_SENSORS_AMS_PMU) += ams-pmu.o
|
|
ams-$(CONFIG_SENSORS_AMS_I2C) += ams-i2c.o
|
|
obj-$(CONFIG_SENSORS_AMS) += ams.o
|