aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLee Jones <lee.jones@linaro.org>2016-09-14 07:04:43 -0400
committerLee Jones <lee.jones@linaro.org>2016-10-04 10:48:05 -0400
commitc7c76277702c8da9ad9914ade7a4c60a7dcd2c0b (patch)
tree8f3fad316630ad7237c5599b5b97d4fd7b66e213
parent364c517edc3f1ebeeb6960711628b2340bb904be (diff)
mfd: omap-usb-host: Return value is not 'const int'
Change from 'const int' to just 'int'. Cc: <robh+dt@kernel.org> Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r--drivers/mfd/omap-usb-host.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/omap-usb-host.c b/drivers/mfd/omap-usb-host.c
index 1d924d1533c0..7aab376ecb84 100644
--- a/drivers/mfd/omap-usb-host.c
+++ b/drivers/mfd/omap-usb-host.c
@@ -162,7 +162,7 @@ static const char * const port_modes[] = {
162 * provided port mode string as per the port_modes table. 162 * provided port mode string as per the port_modes table.
163 * If no match is found it returns -ENODEV 163 * If no match is found it returns -ENODEV
164 */ 164 */
165static const int omap_usbhs_get_dt_port_mode(const char *mode) 165static int omap_usbhs_get_dt_port_mode(const char *mode)
166{ 166{
167 int i; 167 int i;
168 168