diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2017-05-18 23:11:39 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2017-06-02 22:50:13 +0200 |
commit | d2f31c49cf7cfe8f02b70614ae56a39b0c1d8a75 (patch) | |
tree | 17de5f5ae43dd90f7ff81d21cd6e072f03f59da2 /include/linux/i2c | |
parent | 6c42778780c40c7db0ee2bb56436cae86e4c1ba4 (diff) | |
download | op-kernel-dev-d2f31c49cf7cfe8f02b70614ae56a39b0c1d8a75.zip op-kernel-dev-d2f31c49cf7cfe8f02b70614ae56a39b0c1d8a75.tar.gz |
i2c: sh_mobile: remove platform_data
No platform currently upstream makes use of this platform_data anymore.
The ones that did are converted to DT meanwhile. So, remove it. The old
platforms likely don't have the 'clks_per_cnt' feature, otherwise it
would have been implemented by now. And in the unlikely case they need
to setup a different bus speed, we should rather go for a generic i2c
platform data just for that.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'include/linux/i2c')
-rw-r--r-- | include/linux/i2c/i2c-sh_mobile.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/linux/i2c/i2c-sh_mobile.h b/include/linux/i2c/i2c-sh_mobile.h deleted file mode 100644 index 06e3089..0000000 --- a/include/linux/i2c/i2c-sh_mobile.h +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef __I2C_SH_MOBILE_H__ -#define __I2C_SH_MOBILE_H__ - -#include <linux/platform_device.h> - -struct i2c_sh_mobile_platform_data { - unsigned long bus_speed; - unsigned int clks_per_count; -}; - -#endif /* __I2C_SH_MOBILE_H__ */ |