Changeset 3448
- Timestamp:
- 02/10/00 16:28:23 (13 years ago)
- Location:
- i2c/trunk/kernel
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
i2c/trunk/kernel/i2c-core.c
r3444 r3448 99 99 implementation of the read hook */ 100 100 static struct file_operations i2cproc_operations = { 101 NULL, 102 i2cproc_bus_read, 101 read: i2cproc_bus_read, 103 102 }; 104 103 -
i2c/trunk/kernel/i2c-dev.c
r3440 r3448 75 75 76 76 static struct file_operations i2cdev_fops = { 77 i2cdev_lseek, 78 i2cdev_read, 79 i2cdev_write, 80 NULL, /* i2cdev_readdir */ 81 NULL, /* i2cdev_select */ 82 i2cdev_ioctl, 83 NULL, /* i2cdev_mmap */ 84 i2cdev_open, 85 NULL, /* i2cdev_flush */ 86 i2cdev_release, 77 llseek: i2cdev_lseek, 78 read: i2cdev_read, 79 write: i2cdev_write, 80 ioctl: i2cdev_ioctl, 81 open: i2cdev_open, 82 release: i2cdev_release, 87 83 }; 88 84 -
i2c/trunk/kernel/i2c-id.h
r3447 r3448 68 68 #define I2C_DRIVERID_SAA7110 22 /* */ 69 69 #define I2C_DRIVERID_MGATVO 23 /* Matrox TVOut */ 70 #define I2C_DRIVERID_SAA5249 24 /* Matrox TVOut */ 70 71 71 72 #define I2C_DRIVERID_EXP0 0xF0 /* experimental use id's */
