ac171c4666
This patch adds a windfarm module, windfarm_pm112, for the dual core G5s (both 2 and 4 core models), keeping the machine from getting into vacuum-cleaner mode ;) For proper credits, the patch was initially written by Paul Mackerras, and slightly reworked by me to add overtemp handling among others. The patch also removes the sysfs attributes from windfarm_pm81 and windfarm_pm91 and instead adds code to the windfarm core to automagically expose attributes for sensor & controls. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
43 lines
1.5 KiB
Makefile
43 lines
1.5 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
|
|
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_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
|