Changeset 4498

Show
Ignore:
Timestamp:
06/27/07 16:53:36 (6 years ago)
Author:
khali
Message:

i2c-dev.h is no longer there.

Location:
lm-sensors/branches/lm-sensors-3.0.0
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/branches/lm-sensors-3.0.0/doc/developers/applications

    r4484 r4498  
    1111        1) Character device access to the i2c bus driver 
    1212           via /dev/i2c-x 
    13         2) I2C bus access functions as defined in kernel/include/i2c-dev.h 
     13        2) I2C bus access functions as defined in <linux/i2c-dev.h> 
    1414        3) sysfs access to the chip device driver 
    1515        4) libsensors library 
     
    40402. Direct /dev access using inline functions 
    4141-------------------------------------------- 
    42    I2C bus access inline functions as defined in kernel/include/i2c-dev.h, 
     42   I2C bus access inline functions as defined in <linux/i2c-dev.h>, 
    4343   and in doc/dev-interface in the i2c package or 
    4444   Documentation/i2c/dev-interface in the linux kernel sources. 
     
    4646   source tree. However, userspace applications are not supposed to      
    4747   include kernel headers, so the inline functions were removed from 
    48    the kernel file in recent kernels. Use the header file in this package 
    49    instead. 
     48   the kernel file in recent kernels. Use the header file from the 
     49   i2c-tools package instead. 
    5050 
    5151   This method does not use a chip device driver at all. 
  • lm-sensors/branches/lm-sensors-3.0.0/kernel/include/Module.mk

    r4397 r4498  
    2222KERNELINCLUDEDIR := $(MODULE_DIR) 
    2323 
    24 KERNELINCLUDEFILES := $(MODULE_DIR)/i2c-dev.h $(MODULE_DIR)/sensors.h 
     24KERNELINCLUDEFILES := $(MODULE_DIR)/sensors.h 
    2525 
    2626REMOVEKERNELINC := $(patsubst $(MODULE_DIR)/%,$(DESTDIR)$(SYSINCLUDEDIR)/%,$(KERNELINCLUDEFILES))