diff options
Diffstat (limited to 'drivers/message/i2o/i2o_proc.c')
-rw-r--r-- | drivers/message/i2o/i2o_proc.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/message/i2o/i2o_proc.c b/drivers/message/i2o/i2o_proc.c index 6fdd072201f9..54a3016ff45d 100644 --- a/drivers/message/i2o/i2o_proc.c +++ b/drivers/message/i2o/i2o_proc.c | |||
@@ -1893,13 +1893,11 @@ static int i2o_proc_create_entries(struct proc_dir_entry *dir, | |||
1893 | struct proc_dir_entry *tmp; | 1893 | struct proc_dir_entry *tmp; |
1894 | 1894 | ||
1895 | while (i2o_pe->name) { | 1895 | while (i2o_pe->name) { |
1896 | tmp = create_proc_entry(i2o_pe->name, i2o_pe->mode, dir); | 1896 | tmp = proc_create_data(i2o_pe->name, i2o_pe->mode, dir, |
1897 | i2o_pe->fops, data); | ||
1897 | if (!tmp) | 1898 | if (!tmp) |
1898 | return -1; | 1899 | return -1; |
1899 | 1900 | ||
1900 | tmp->data = data; | ||
1901 | tmp->proc_fops = i2o_pe->fops; | ||
1902 | |||
1903 | i2o_pe++; | 1901 | i2o_pe++; |
1904 | } | 1902 | } |
1905 | 1903 | ||