diff options
Diffstat (limited to 'drivers/i2c/busses/i2c-pca-isa.c')
-rw-r--r-- | drivers/i2c/busses/i2c-pca-isa.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/i2c/busses/i2c-pca-isa.c b/drivers/i2c/busses/i2c-pca-isa.c index 29933f87d8fa..323f061a3163 100644 --- a/drivers/i2c/busses/i2c-pca-isa.c +++ b/drivers/i2c/busses/i2c-pca-isa.c | |||
@@ -119,7 +119,7 @@ static struct i2c_adapter pca_isa_ops = { | |||
119 | .timeout = HZ, | 119 | .timeout = HZ, |
120 | }; | 120 | }; |
121 | 121 | ||
122 | static int __devinit pca_isa_match(struct device *dev, unsigned int id) | 122 | static int pca_isa_match(struct device *dev, unsigned int id) |
123 | { | 123 | { |
124 | int match = base != 0; | 124 | int match = base != 0; |
125 | 125 | ||
@@ -132,7 +132,7 @@ static int __devinit pca_isa_match(struct device *dev, unsigned int id) | |||
132 | return match; | 132 | return match; |
133 | } | 133 | } |
134 | 134 | ||
135 | static int __devinit pca_isa_probe(struct device *dev, unsigned int id) | 135 | static int pca_isa_probe(struct device *dev, unsigned int id) |
136 | { | 136 | { |
137 | init_waitqueue_head(&pca_wait); | 137 | init_waitqueue_head(&pca_wait); |
138 | 138 | ||
@@ -174,7 +174,7 @@ static int __devinit pca_isa_probe(struct device *dev, unsigned int id) | |||
174 | return -ENODEV; | 174 | return -ENODEV; |
175 | } | 175 | } |
176 | 176 | ||
177 | static int __devexit pca_isa_remove(struct device *dev, unsigned int id) | 177 | static int pca_isa_remove(struct device *dev, unsigned int id) |
178 | { | 178 | { |
179 | i2c_del_adapter(&pca_isa_ops); | 179 | i2c_del_adapter(&pca_isa_ops); |
180 | 180 | ||
@@ -190,7 +190,7 @@ static int __devexit pca_isa_remove(struct device *dev, unsigned int id) | |||
190 | static struct isa_driver pca_isa_driver = { | 190 | static struct isa_driver pca_isa_driver = { |
191 | .match = pca_isa_match, | 191 | .match = pca_isa_match, |
192 | .probe = pca_isa_probe, | 192 | .probe = pca_isa_probe, |
193 | .remove = __devexit_p(pca_isa_remove), | 193 | .remove = pca_isa_remove, |
194 | .driver = { | 194 | .driver = { |
195 | .owner = THIS_MODULE, | 195 | .owner = THIS_MODULE, |
196 | .name = DRIVER, | 196 | .name = DRIVER, |