Changeset 3527 for i2c/trunk/mkpatch/mkpatch.pl
- Timestamp:
- 02/04/01 23:21:19 (12 years ago)
- Files:
-
- 1 modified
-
i2c/trunk/mkpatch/mkpatch.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
i2c/trunk/mkpatch/mkpatch.pl
r3523 r3527 258 258 module will be called i2c-dev.o. 259 259 260 I2C /proc support 261 CONFIG_I2C_PROC 262 This provides support for i2c device entries in the /proc filesystem. 263 The entries will be found in /proc/sys/dev/sensors. 264 265 This code is also available as a module. If you want to compile 266 it as a module, say M here and read Documentation/modules.txt. The 267 module will be called i2c-dev.o. 268 260 269 EOF 261 270 $printed = 1; … … 506 515 ifeq ($(CONFIG_I2C_CHARDEV),m) 507 516 M_OBJS += i2c-dev.o 517 endif 518 endif 519 520 ifeq ($(CONFIG_I2C_PROC),y) 521 L_OBJS += i2c-proc.o 522 else 523 ifeq ($(CONFIG_I2C_PROC),m) 524 M_OBJS += i2c-proc.o 508 525 endif 509 526 endif
