summaryrefslogtreecommitdiffstats
path: root/drivers/i2c/i2c-core.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/i2c/i2c-core.c')
-rw-r--r--drivers/i2c/i2c-core.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c
index c98cb7c6f..493befb7d 100644
--- a/drivers/i2c/i2c-core.c
+++ b/drivers/i2c/i2c-core.c
@@ -101,10 +101,6 @@ static struct file_operations i2cproc_operations = {
read: i2cproc_bus_read,
};
-static struct inode_operations i2cproc_inode_operations = {
- &i2cproc_operations
-};
-
static int i2cproc_initialized = 0;
#else /* undef CONFIG_PROC_FS */
@@ -163,7 +159,7 @@ int i2c_add_adapter(struct i2c_adapter *adap)
name);
return -ENOENT;
}
- proc_entry->ops = &i2cproc_inode_operations;
+ proc_entry->proc_fops = &i2cproc_operations;
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,3,27))
proc_entry->owner = THIS_MODULE;
#else