Changeset 1631

Show
Ignore:
Timestamp:
11/20/02 02:28:58 (6 years ago)
Author:
amalysh
Message:

added i2c-sis630/i2c-sis645 into mkpatch

Files:

Legend:

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

    r1616 r1631  
    3030KERNELBUSSESTARGETS += $(MODULE_DIR)/i2c-ipmi.o 
    3131endif 
     32# These targets ARE included in 'mkpatch' ... 
     33ifneq ($(shell if grep -q '^CONFIG_I2C_SIS630=y' $(LINUX)/.config; then echo 1; fi),1) 
    3234KERNELBUSSESTARGETS += $(MODULE_DIR)/i2c-sis630.o 
     35endif 
     36ifneq ($(shell if grep -q '^CONFIG_I2C_SIS645=y' $(LINUX)/.config; then echo 1; fi),1) 
    3337KERNELBUSSESTARGETS += $(MODULE_DIR)/i2c-sis645.o 
    34  
    35 # These targets ARE included in 'mkpatch' ... 
     38endif 
    3639ifneq ($(shell if grep -q '^CONFIG_I2C_ALI1535=y' $(LINUX)/.config; then echo 1; fi),1) 
    3740KERNELBUSSESTARGETS += $(MODULE_DIR)/i2c-ali1535.o 
  • lm-sensors/trunk/mkpatch/FILES

    r1616 r1631  
    1616kernel/busses/i2c-viapro.c      drivers/i2c/i2c-viapro.c 
    1717kernel/busses/i2c-voodoo3.c     drivers/i2c/i2c-voodoo3.c 
     18kernel/busses/i2c-sis630.c      drivers/i2c/i2c-sis630.c 
     19kernel/busses/i2c-sis645.c      drivers/i2c/i2c-sis645.c 
    1820kernel/sensors.c                drivers/sensors/sensors.c 
    1921kernel/chips/adm1021.c          drivers/sensors/adm1021.c 
  • lm-sensors/trunk/mkpatch/mkpatch.pl

    r1596 r1631  
    190190  is running. 
    191191 
     192Silicon Integrated Systems Corp. SiS630/730 based Mainboard 
     193CONFIG_I2C_SIS630 
     194  If you say yes to this option, support will be included for the SiS 630 
     195  and 730 mainboard I2C interfaces. This can also be built as a module  
     196  which can be inserted and removed while the kernel is running. 
     197 
     198Silicon Integrated Systems Corp. SiS645/961,645DX/961,735 based Mainboard 
     199CONFIG_I2C_SIS645 
     200  If you say yes to this option, support will be included for the SiS 645/961, 
     201  645DX/961 and 735 mainboard I2C interfaces. This can also be built as a module 
     202  which can be inserted and removed while the kernel is running. 
     203 
    192204VIA Technologies, Inc. VT82C586B 
    193205CONFIG_I2C_VIA 
     
    236248  If you say yes here you get support for Analog Devices ADM1021  
    237249  and ADM1023 sensor chips and clones: Maxim MAX1617 and MAX1617A, 
    238   Genesys Logic GL523SM, National Semi LM84, TI THMC10, 
     250  Genesys Logic GL523SM, National Semi LM84, TI THMC10, Onsemi MC1066 
    239251  and the XEON processor built-in sensor. This can also  
    240252  be built as a module which can be inserted and removed while the  
     
    795807    dep_tristate '  Intel 82371AB PIIX4(E), 443MX, ServerWorks OSB4/CSB5, SMSC Victory66' CONFIG_I2C_PIIX4 $CONFIG_I2C 
    796808    dep_tristate '  SiS 5595' CONFIG_I2C_SIS5595 $CONFIG_I2C 
     809    dep_tristate '  SiS 630/730' CONFIG_I2C_SIS630 $CONFIG_I2C 
     810    dep_tristate '  SiS 645/961,645DX/961,735' CONFIG_I2C_SIS645 $CONFIG_I2C $CONFIG_HOTPLUG 
    797811    dep_tristate '  Savage 4' CONFIG_I2C_SAVAGE4 $CONFIG_I2C_ALGOBIT 
    798812    dep_tristate '  VIA Technologies, Inc. VT82C586B' CONFIG_I2C_VIA $CONFIG_I2C_ALGOBIT 
     
    11651179obj-$(CONFIG_I2C_PIIX4)                 += i2c-piix4.o dmi_scan.o 
    11661180obj-$(CONFIG_I2C_SIS5595)               += i2c-sis5595.o 
     1181obj-$(CONFIG_I2C_SIS630)                += i2c-sis630.o 
     1182obj-$(CONFIG_I2C_SIS645)                += i2c-sis645.o 
    11671183obj-$(CONFIG_I2C_SAVAGE4)               += i2c-savage4.o 
    11681184obj-$(CONFIG_I2C_TSUNAMI)               += i2c-tsunami.o 
     
    12461262endif 
    12471263 
     1264ifeq ($(CONFIG_I2C_SIS630),y) 
     1265  L_OBJS += i2c-sis630.o 
     1266else  
     1267  ifeq ($(CONFIG_I2C_SIS630),m) 
     1268    M_OBJS += i2c-sis630.o 
     1269  endif 
     1270endif 
     1271 
     1272ifeq ($(CONFIG_I2C_SIS645),y) 
     1273  L_OBJS += i2c-sis645.o 
     1274else  
     1275  ifeq ($(CONFIG_I2C_SIS645),m) 
     1276    M_OBJS += i2c-sis645.o 
     1277  endif 
     1278endif 
     1279 
    12481280ifeq ($(CONFIG_I2C_SAVAGE4),y) 
    12491281  L_OBJS += i2c-savage4.o 
     
    13501382        extern int i2c_sis5595_init(void); 
    13511383#endif 
     1384#ifdef CONFIG_I2C_SIS630 
     1385        extern int i2c_sis630_init(void); 
     1386#endif 
     1387#ifdef CONFIG_I2C_SIS645 
     1388        extern int sis645_init(void); 
     1389#endif 
    13521390#ifdef CONFIG_I2C_SAVAGE4 
    13531391        extern int i2c_savage4_init(void); 
     
    13911429#ifdef CONFIG_I2C_SIS5595 
    13921430        i2c_sis5595_init(); 
     1431#endif 
     1432#ifdef CONFIG_I2C_SIS630 
     1433        i2c_sis630_init(); 
     1434#endif 
     1435#ifdef CONFIG_I2C_SIS645 
     1436        sis645_init(); 
    13931437#endif 
    13941438#ifdef CONFIG_I2C_SAVAGE4