diff options
Diffstat (limited to 'drivers/i2c/busses/i2c-parport-light.c')
-rw-r--r-- | drivers/i2c/busses/i2c-parport-light.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/i2c/busses/i2c-parport-light.c b/drivers/i2c/busses/i2c-parport-light.c index 4b95f7a63a3b..aa9577881925 100644 --- a/drivers/i2c/busses/i2c-parport-light.c +++ b/drivers/i2c/busses/i2c-parport-light.c | |||
@@ -135,7 +135,7 @@ static struct lineop parport_ctrl_irq = { | |||
135 | .port = PORT_CTRL, | 135 | .port = PORT_CTRL, |
136 | }; | 136 | }; |
137 | 137 | ||
138 | static int __devinit i2c_parport_probe(struct platform_device *pdev) | 138 | static int i2c_parport_probe(struct platform_device *pdev) |
139 | { | 139 | { |
140 | int err; | 140 | int err; |
141 | 141 | ||
@@ -169,7 +169,7 @@ static int __devinit i2c_parport_probe(struct platform_device *pdev) | |||
169 | return 0; | 169 | return 0; |
170 | } | 170 | } |
171 | 171 | ||
172 | static int __devexit i2c_parport_remove(struct platform_device *pdev) | 172 | static int i2c_parport_remove(struct platform_device *pdev) |
173 | { | 173 | { |
174 | if (ara) { | 174 | if (ara) { |
175 | line_set(0, &parport_ctrl_irq); | 175 | line_set(0, &parport_ctrl_irq); |
@@ -191,7 +191,7 @@ static struct platform_driver i2c_parport_driver = { | |||
191 | .name = DRVNAME, | 191 | .name = DRVNAME, |
192 | }, | 192 | }, |
193 | .probe = i2c_parport_probe, | 193 | .probe = i2c_parport_probe, |
194 | .remove = __devexit_p(i2c_parport_remove), | 194 | .remove = i2c_parport_remove, |
195 | }; | 195 | }; |
196 | 196 | ||
197 | static int __init i2c_parport_device_add(u16 address) | 197 | static int __init i2c_parport_device_add(u16 address) |