Changeset 3738
- Timestamp:
- 12/04/02 04:42:09 (6 years ago)
- Files:
-
- i2c/trunk/CHANGES (modified) (4 diffs)
- i2c/trunk/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
i2c/trunk/CHANGES
r3737 r3738 18 18 ----------------------------------------------------------------------------- 19 19 20 2.7.0 (20021 1??)20 2.7.0 (200212??) 21 21 drivers (several): C99 initializers (sync w/ kernel 2.5.49); HZ fixes 22 22 i2c.h: Add I2C_M_IGNORE_NAK, I2C_M_NO_RD_ACK to flags. … … 33 33 mkpatch: Fix export-objs 34 34 doc/i2c-protocol: Comment new client flags, fix I2C_M_NOSTART samples. 35 Makefile: Take kernel source location from /lib/modules/x.x.x/build 35 Makefile: Take kernel source location from /lib/modules/x.x.x/build; 36 add flags for x86_64 compiles 36 37 37 38 2.6.5 (20020915) … … 40 41 i2c-algo-ibm_ocp.[ch], i2c-frodo, i2c-rpx, 41 42 i2c-pport, i2c-pcf-epp. 42 i2c-adap-ibm_ocp.c, i2c-elektor.c, i2c-pcf-epp.c : Replaced deprec iated cli()43 i2c-adap-ibm_ocp.c, i2c-elektor.c, i2c-pcf-epp.c : Replaced deprecated cli() 43 44 and sti() with spin_lock_irq(&driver_lock); and 44 45 spin_unlock_irq(&driver_lock); Added spinlock_t driver_lock = … … 47 48 module level and renamed to irq_driver_lock to avoid conflict with 48 49 driver_lock semaphore in i2c-core. 49 i2c-algo-8xx.c: Replaced deprec iated save_flags(flags); cli() with50 i2c-algo-8xx.c: Replaced deprecated save_flags(flags); cli() with 50 51 local_irq_save(flags); and restore_flags(flags) with 51 52 local_irq_restore(flags); i2c/trunk/Makefile
r3733 r3738 162 162 endif 163 163 164 ifeq ($(MACHINE),x86_64) 165 MODCFLAGS += -fno-strict-aliasing -fno-common -fomit-frame-pointer -mno-red-zone\ 166 -mcmodel=kernel -fno-reorder-blocks -finline-limit=2000 -fno-strength-reduce 167 endif 168 164 169 ifeq ($(SMP),1) 165 170 MODCFLAGS += -D__SMP__
