Changeset 168
- Timestamp:
- 01/14/99 01:41:44 (10 years ago)
- Files:
-
- lm-sensors/trunk/Makefile (modified) (2 diffs)
- lm-sensors/trunk/TODO (modified) (1 diff)
- lm-sensors/trunk/lib/conf-parse.y (modified) (1 diff)
- lm-sensors/trunk/prog/detect/i2cdetect.c (modified) (1 diff)
- lm-sensors/trunk/prog/dump/i2cdetect.c (modified) (1 diff)
- lm-sensors/trunk/prog/dump/i2cdump.c (modified) (1 diff)
- lm-sensors/trunk/prog/dump/isadump.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/Makefile
r158 r168 134 134 endif 135 135 136 ifeq ($(I2C),1) 137 CFLAGS += -DI2C 138 endif 139 136 140 MODCFLAGS := $(CFLAGS) -D__KERNEL__ -DMODULE -fomit-frame-pointer 137 141 PROGCFLAGS := $(CFLAGS) … … 145 149 ifeq ($(MODVER),1) 146 150 MODCFLAGS += -DMODVERSIONS -include /usr/include/linux/modversions.h 147 endif148 149 ifeq ($(I2C),1)150 MODCFLAGS += -DI2C151 151 endif 152 152 lm-sensors/trunk/TODO
r160 r168 1 1 Many, many things. Most notably: 2 2 3 * Create wait-queues for bus locking instead of pure semaphores, to make 4 it more interactive 3 5 * Check for block read/writes in smbus-on-i2c emulation code 4 6 * Merge newest Simon Vogl archive lm-sensors/trunk/lib/conf-parse.y
r119 r168 29 29 #include "error.h" 30 30 #include "conf.h" 31 #include "access.h" 31 32 32 33 /* These two functions are defined in conf-lex.l */ lm-sensors/trunk/prog/detect/i2cdetect.c
r167 r168 19 19 */ 20 20 21 #include <errno.h> 22 #include <string.h> 21 23 #include <stdio.h> 22 24 #include <stdlib.h> lm-sensors/trunk/prog/dump/i2cdetect.c
r167 r168 19 19 */ 20 20 21 #include <errno.h> 22 #include <string.h> 21 23 #include <stdio.h> 22 24 #include <stdlib.h> lm-sensors/trunk/prog/dump/i2cdump.c
r166 r168 18 18 */ 19 19 20 #include <errno.h> 21 #include <string.h> 20 22 #include <stdio.h> 21 23 #include <stdlib.h> lm-sensors/trunk/prog/dump/isadump.c
r144 r168 22 22 #include <unistd.h> 23 23 #include <asm/io.h> 24 25 /* To keep glibc2 happy */ 26 #ifdef __GLIBC__ 27 #include <sys/perm.h> 28 #endif 24 29 25 30 char hexchar(int i)
