Changeset 2441

Show
Ignore:
Timestamp:
04/16/04 22:56:53 (5 years ago)
Author:
khali
Message:

Enable the i2c-nforce2 module in mkpatch.

Patch by Aurelien Jarno.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lm-sensors/trunk/kernel/busses/Module.mk

    r2189 r2441  
    2626# These targets are NOT included in 'mkpatch' ... 
    2727KERNELBUSSESTARGETS := 
    28 KERNELBUSSESTARGETS += $(MODULE_DIR)/i2c-nforce2.o 
    2928ifeq ($(shell if grep -q '^CONFIG_IPMI_HANDLER=' $(LINUX)/.config; then echo 1; fi),1) 
    3029KERNELBUSSESTARGETS += $(MODULE_DIR)/i2c-ipmb.o 
     
    5655ifneq ($(shell if grep -q '^CONFIG_I2C_ISA=y' $(LINUX)/.config; then echo 1; fi),1) 
    5756KERNELBUSSESTARGETS += $(MODULE_DIR)/i2c-isa.o 
     57endif 
     58ifneq ($(shell if grep -q '^CONFIG_I2C_NFORCE2=y' $(LINUX)/.config; then echo 1; fi),1) 
     59KERNELBUSSESTARGETS += $(MODULE_DIR)/i2c-nforce2.o 
    5860endif 
    5961ifneq ($(shell if grep -q '^CONFIG_I2C_SIS5595=y' $(LINUX)/.config; then echo 1; fi),1) 
  • lm-sensors/trunk/mkpatch/FILES

    r2424 r2441  
    77kernel/busses/i2c-i810.c        drivers/i2c/i2c-i810.c 
    88kernel/busses/i2c-isa.c         drivers/i2c/i2c-isa.c 
     9kernel/busses/i2c-nforce2.c     drivers/i2c/i2c-nforce2.c 
    910kernel/busses/i2c-piix4.c       drivers/i2c/i2c-piix4.c 
    1011kernel/busses/i2c-savage4.c     drivers/i2c/i2c-savage4.c 
  • lm-sensors/trunk/mkpatch/mkpatch.pl

    r2424 r2441  
    8989           m@Intel I810/I815 based Mainboard@ or 
    9090           m@Intel 82371AB PIIX4\(E\)@ or 
     91           m@Nvidia Nforce2@ or 
    9192           m@Silicon Integrated Systems Corp. SiS5595 based Mainboard@ or 
    9293           m@VIA Technologies, Inc. VT82C586B@ or 
     
    202203  is running. 
    203204 
     205Nvidia Nforce2 based Mainboard 
     206CONFIG_I2C_NFORCE2 
     207  If you say yes to this option, support will be included for the  
     208  Nvidia Nforce2 family of mainboard I2C interfaces. This can also be 
     209  built as a module which can be inserted and removed while the kernel 
     210  is running. 
     211 
    204212Silicon Integrated Systems Corp. SiS5595 based Mainboard 
    205213CONFIG_I2C_SIS5595 
     
    852860    dep_tristate '  Intel i810AA/AB/E and i815' CONFIG_I2C_I810 $CONFIG_I2C_ALGOBIT 
    853861    dep_tristate '  Intel 82371AB PIIX4(E), 443MX, ServerWorks OSB4/CSB5, SMSC Victory66' CONFIG_I2C_PIIX4 $CONFIG_I2C 
     862    dep_tristate '  Nvidia Nforce2' CONFIG_I2C_NFORCE2 $CONFIG_I2C 
    854863    dep_tristate '  SiS 5595' CONFIG_I2C_SIS5595 $CONFIG_I2C 
    855864    dep_tristate '  SiS 630/730' CONFIG_I2C_SIS630 $CONFIG_I2C 
     
    967976obj-$(CONFIG_I2C_I810)                  += i2c-i810.o 
    968977obj-$(CONFIG_I2C_ISA)                   += i2c-isa.o 
     978obj-$(CONFIG_I2C_NFORCE2)               += i2c-nforce2.o 
    969979obj-$(CONFIG_I2C_PIIX4)                 += i2c-piix4.o 
    970980obj-$(CONFIG_I2C_SIS5595)               += i2c-sis5595.o