diff options
Diffstat (limited to 'drivers/i2c/busses/i2c-s6000.c')
-rw-r--r-- | drivers/i2c/busses/i2c-s6000.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/i2c/busses/i2c-s6000.c b/drivers/i2c/busses/i2c-s6000.c index b76a29d1f8e4..008836409efe 100644 --- a/drivers/i2c/busses/i2c-s6000.c +++ b/drivers/i2c/busses/i2c-s6000.c | |||
@@ -248,7 +248,7 @@ static struct i2c_algorithm s6i2c_algorithm = { | |||
248 | .functionality = s6i2c_functionality, | 248 | .functionality = s6i2c_functionality, |
249 | }; | 249 | }; |
250 | 250 | ||
251 | static u16 __devinit nanoseconds_on_clk(struct s6i2c_if *iface, u32 ns) | 251 | static u16 nanoseconds_on_clk(struct s6i2c_if *iface, u32 ns) |
252 | { | 252 | { |
253 | u32 dividend = ((clk_get_rate(iface->clk) / 1000) * ns) / 1000000; | 253 | u32 dividend = ((clk_get_rate(iface->clk) / 1000) * ns) / 1000000; |
254 | if (dividend > 0xffff) | 254 | if (dividend > 0xffff) |
@@ -256,7 +256,7 @@ static u16 __devinit nanoseconds_on_clk(struct s6i2c_if *iface, u32 ns) | |||
256 | return dividend; | 256 | return dividend; |
257 | } | 257 | } |
258 | 258 | ||
259 | static int __devinit s6i2c_probe(struct platform_device *dev) | 259 | static int s6i2c_probe(struct platform_device *dev) |
260 | { | 260 | { |
261 | struct s6i2c_if *iface = &s6i2c_if; | 261 | struct s6i2c_if *iface = &s6i2c_if; |
262 | struct i2c_adapter *p_adap; | 262 | struct i2c_adapter *p_adap; |
@@ -361,7 +361,7 @@ err_out: | |||
361 | return rc; | 361 | return rc; |
362 | } | 362 | } |
363 | 363 | ||
364 | static int __devexit s6i2c_remove(struct platform_device *pdev) | 364 | static int s6i2c_remove(struct platform_device *pdev) |
365 | { | 365 | { |
366 | struct s6i2c_if *iface = platform_get_drvdata(pdev); | 366 | struct s6i2c_if *iface = platform_get_drvdata(pdev); |
367 | i2c_wr16(iface, S6_I2C_ENABLE, 0); | 367 | i2c_wr16(iface, S6_I2C_ENABLE, 0); |
@@ -378,7 +378,7 @@ static int __devexit s6i2c_remove(struct platform_device *pdev) | |||
378 | 378 | ||
379 | static struct platform_driver s6i2c_driver = { | 379 | static struct platform_driver s6i2c_driver = { |
380 | .probe = s6i2c_probe, | 380 | .probe = s6i2c_probe, |
381 | .remove = __devexit_p(s6i2c_remove), | 381 | .remove = s6i2c_remove, |
382 | .driver = { | 382 | .driver = { |
383 | .name = DRV_NAME, | 383 | .name = DRV_NAME, |
384 | .owner = THIS_MODULE, | 384 | .owner = THIS_MODULE, |