Changeset 4447
- Timestamp:
- 06/15/07 11:15:18 (1 year ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (2 diffs)
- lm-sensors/trunk/README (modified) (1 diff)
- lm-sensors/trunk/doc/chips/SUMMARY (modified) (1 diff)
- lm-sensors/trunk/doc/chips/w83627ehf (added)
- lm-sensors/trunk/kernel/chips/Module.mk (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/w83627ehf.c (added)
- lm-sensors/trunk/mkpatch/FILES (modified) (1 diff)
- lm-sensors/trunk/mkpatch/mkpatch.pl (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r4439 r4447 11 11 Man page sensors.conf.5: Update the chip statement section 12 12 Module i2c-nforce2: Add nForce MCP61, MCP65 support (2.6 backport) 13 Module w83627ehf: New (2.6 backport) 13 14 Programs i2cdump, i2cget, i2cset: Do not force the slave address by default 14 15 Program i2cdump: Use the new I2C block read function … … 23 24 Program pwmconfig: Use smaller steps for low PWM values 24 25 Support optional min and max PWM values 26 Program mkpatch: Include w83627ehf 25 27 Program rrd: Support non-i2c devices (hwmon class) 26 28 Add missing shell declarations lm-sensors/trunk/README
r4320 r4447 90 90 VIA Technologies VT1211, VT8231 and VT82C686A/B embedded sensors 91 91 Winbond W83781D, W83782D, W83783S, W83791D, W83792D, 92 W83627HF, W83627THF, W83637HF, W83687THF and W83697HF 92 W83627HF, W83627THF, W83637HF, W83687THF, W83697HF, 93 W83627EHF/EHG 93 94 94 95 lm-sensors/trunk/doc/chips/SUMMARY
r4331 r4447 245 245 w83697hf 2 8 2 2 pwm no yes (LPC) 246 246 247 w83627ehf 248 w83627ehf 3 10 3-5 4 pwm no yes (LPC) 249 247 250 w83781d 248 251 as99127f 3 7 3 - yes no lm-sensors/trunk/kernel/chips/Module.mk
r4070 r4447 176 176 ifneq ($(shell if grep -q '^CONFIG_SENSORS_W83627HF=y' $(LINUX)/.config; then echo 1; fi),1) 177 177 KERNELCHIPSTARGETS += $(MODULE_DIR)/w83627hf.o 178 endif 179 ifneq ($(shell if grep -q '^CONFIG_SENSORS_W83627EHF=y' $(LINUX)/.config; then echo 1; fi),1) 180 KERNELCHIPSTARGETS += $(MODULE_DIR)/w83627ehf.o 178 181 endif 179 182 ifneq ($(shell if grep -q '^CONFIG_SENSORS_W83L785TS=y' $(LINUX)/.config; then echo 1; fi),1) lm-sensors/trunk/mkpatch/FILES
r3169 r4447 66 66 kernel/chips/w83792d.c drivers/sensors/w83792d.c 67 67 kernel/chips/w83627hf.c drivers/sensors/w83627hf.c 68 kernel/chips/w83627ehf.c drivers/sensors/w83627ehf.c 68 69 kernel/chips/w83l785ts.c drivers/sensors/w83l785ts.c 69 70 kernel/chips/xeontemp.c drivers/sensors/xeontemp.c lm-sensors/trunk/mkpatch/mkpatch.pl
r4320 r4447 3 3 # mkpatch - Create patches against the Linux kernel 4 4 # Copyright (C) 1999 Frodo Looijaard <frodol@dds.nl> 5 # Copyright (C) 2005 Jean Delvare <khali@linux-fr.org>5 # Copyright (C) 2005-2007 Jean Delvare <khali@linux-fr.org> 6 6 # 7 7 # This program is free software; you can redistribute it and/or modify … … 136 136 m@Winbond W83792D@ or 137 137 m@Winbond W83627HF, W83627THF@ or 138 m@Winbond W83627EHF/EHG@ or 138 139 m@Winbond W83L785TS-S@ or 139 140 m@EEprom \(DIMM\) reader@) { … … 726 727 W83697HF. This can also be built as a module which can be inserted 727 728 and removed while the kernel is running. 729 730 You will also need the latest user-space utilities: you can find 731 them in the lm_sensors package, which you can download at 732 http://www.lm-sensors.org/ 733 734 Winbond W83627EHF/EHG 735 CONFIG_SENSORS_W83627EHF 736 If you say yes here you get support for the Winbond W83627EHF/EHG 737 sensor chips. This can also be built as a module which can be 738 inserted and removed while the kernel is running. 728 739 729 740 You will also need the latest user-space utilities: you can find … … 1064 1075 obj-$(CONFIG_SENSORS_W83792D) += w83792d.o 1065 1076 obj-$(CONFIG_SENSORS_W83627HF) += w83627hf.o 1077 obj-$(CONFIG_SENSORS_W83627EHF) += w83627ehf.o 1066 1078 obj-$(CONFIG_SENSORS_W83L785TS) += w83l785ts.o 1067 1079 obj-$(CONFIG_SENSORS_XEONTEMP) += xeontemp.o
