mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
6cd3209967
This replaces the old therm_pm72 using the same windfarm infrastructure that was used for other PowerMac G5 models. The fan speeds and sensors should now be visible in the same location in sysfs. The driver is split into separate core modules for PowerMac7,2 (and 7,3) and RackMac3,1, with a lot of the shared code now in the separate sensor and control modules. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
66 lines
2.3 KiB
Makefile
66 lines
2.3 KiB
Makefile
#
|
|
# Makefile for the Macintosh-specific device drivers.
|
|
#
|
|
|
|
# Each configuration option enables a list of files.
|
|
|
|
obj-$(CONFIG_PPC_PMAC) += macio_asic.o macio_sysfs.o
|
|
|
|
obj-$(CONFIG_PMAC_MEDIABAY) += mediabay.o
|
|
obj-$(CONFIG_MAC_EMUMOUSEBTN) += mac_hid.o
|
|
obj-$(CONFIG_INPUT_ADBHID) += adbhid.o
|
|
obj-$(CONFIG_ANSLCD) += ans-lcd.o
|
|
|
|
obj-$(CONFIG_ADB_PMU) += via-pmu.o via-pmu-event.o
|
|
obj-$(CONFIG_ADB_PMU_LED) += via-pmu-led.o
|
|
obj-$(CONFIG_PMAC_BACKLIGHT) += via-pmu-backlight.o
|
|
obj-$(CONFIG_ADB_CUDA) += via-cuda.o
|
|
obj-$(CONFIG_PMAC_APM_EMU) += apm_emu.o
|
|
obj-$(CONFIG_PMAC_SMU) += smu.o
|
|
|
|
obj-$(CONFIG_ADB) += adb.o
|
|
obj-$(CONFIG_ADB_MACII) += via-macii.o
|
|
obj-$(CONFIG_ADB_MACIISI) += via-maciisi.o
|
|
obj-$(CONFIG_ADB_IOP) += adb-iop.o
|
|
obj-$(CONFIG_ADB_PMU68K) += via-pmu68k.o
|
|
obj-$(CONFIG_ADB_MACIO) += macio-adb.o
|
|
|
|
obj-$(CONFIG_THERM_PM72) += therm_pm72.o
|
|
obj-$(CONFIG_THERM_WINDTUNNEL) += therm_windtunnel.o
|
|
obj-$(CONFIG_THERM_ADT746X) += therm_adt746x.o
|
|
obj-$(CONFIG_WINDFARM) += windfarm_core.o
|
|
obj-$(CONFIG_WINDFARM_PM72) += windfarm_fcu_controls.o \
|
|
windfarm_ad7417_sensor.o \
|
|
windfarm_lm75_sensor.o \
|
|
windfarm_max6690_sensor.o \
|
|
windfarm_pid.o \
|
|
windfarm_cpufreq_clamp.o \
|
|
windfarm_pm72.o
|
|
obj-$(CONFIG_WINDFARM_RM31) += windfarm_fcu_controls.o \
|
|
windfarm_ad7417_sensor.o \
|
|
windfarm_lm75_sensor.o \
|
|
windfarm_lm87_sensor.o \
|
|
windfarm_pid.o \
|
|
windfarm_cpufreq_clamp.o \
|
|
windfarm_rm31.o
|
|
obj-$(CONFIG_WINDFARM_PM81) += windfarm_smu_controls.o \
|
|
windfarm_smu_sensors.o \
|
|
windfarm_lm75_sensor.o windfarm_pid.o \
|
|
windfarm_cpufreq_clamp.o windfarm_pm81.o
|
|
obj-$(CONFIG_WINDFARM_PM91) += windfarm_smu_controls.o \
|
|
windfarm_smu_sensors.o \
|
|
windfarm_lm75_sensor.o windfarm_pid.o \
|
|
windfarm_cpufreq_clamp.o windfarm_pm91.o
|
|
obj-$(CONFIG_WINDFARM_PM112) += windfarm_pm112.o windfarm_smu_sat.o \
|
|
windfarm_smu_controls.o \
|
|
windfarm_smu_sensors.o \
|
|
windfarm_max6690_sensor.o \
|
|
windfarm_lm75_sensor.o windfarm_pid.o
|
|
obj-$(CONFIG_WINDFARM_PM121) += windfarm_pm121.o windfarm_smu_sat.o \
|
|
windfarm_smu_controls.o \
|
|
windfarm_smu_sensors.o \
|
|
windfarm_max6690_sensor.o \
|
|
windfarm_lm75_sensor.o windfarm_pid.o
|
|
obj-$(CONFIG_PMAC_RACKMETER) += rack-meter.o
|
|
|
|
obj-$(CONFIG_SENSORS_AMS) += ams/
|