Commit 982959ff authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Andi Shyti

i2c: designware: Drop return value from dw_i2c_of_configure()

dw_i2c_of_configure() is called without checking of the returned
value, hence just drop it by converting to void.
Reviewed-by: default avatarAndi Shyti <andi.shyti@kernel.org>
Reviewed-by: default avatarMario Limonciello <mario.limonciello@amd.com>
Acked-by: default avatarJarkko Nikula <jarkko.nikula@linux.intel.com>
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: default avatarAndi Shyti <andi.shyti@kernel.org>
parent 5674e089
...@@ -110,7 +110,7 @@ static int mscc_twi_set_sda_hold_time(struct dw_i2c_dev *dev) ...@@ -110,7 +110,7 @@ static int mscc_twi_set_sda_hold_time(struct dw_i2c_dev *dev)
return 0; return 0;
} }
static int dw_i2c_of_configure(struct platform_device *pdev) static void dw_i2c_of_configure(struct platform_device *pdev)
{ {
struct dw_i2c_dev *dev = platform_get_drvdata(pdev); struct dw_i2c_dev *dev = platform_get_drvdata(pdev);
...@@ -123,8 +123,6 @@ static int dw_i2c_of_configure(struct platform_device *pdev) ...@@ -123,8 +123,6 @@ static int dw_i2c_of_configure(struct platform_device *pdev)
default: default:
break; break;
} }
return 0;
} }
#else #else
static int bt1_i2c_request_regs(struct dw_i2c_dev *dev) static int bt1_i2c_request_regs(struct dw_i2c_dev *dev)
...@@ -132,9 +130,8 @@ static int bt1_i2c_request_regs(struct dw_i2c_dev *dev) ...@@ -132,9 +130,8 @@ static int bt1_i2c_request_regs(struct dw_i2c_dev *dev)
return -ENODEV; return -ENODEV;
} }
static inline int dw_i2c_of_configure(struct platform_device *pdev) static inline void dw_i2c_of_configure(struct platform_device *pdev)
{ {
return -ENODEV;
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment