mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-13 04:39:36 +02:00
gpio: wcove: Use -ENOTSUPP consistently
[ Upstream commit 0c3b532ad3
]
The GPIO library expects the drivers to return -ENOTSUPP in some
cases and not using analogue POSIX code. Make the driver to follow
this.
Reviewed-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
6a451fc5e6
commit
d77f56b649
|
@ -104,7 +104,7 @@ static inline int to_reg(int gpio, enum ctrl_register type)
|
||||||
unsigned int reg = type == CTRL_IN ? GPIO_IN_CTRL_BASE : GPIO_OUT_CTRL_BASE;
|
unsigned int reg = type == CTRL_IN ? GPIO_IN_CTRL_BASE : GPIO_OUT_CTRL_BASE;
|
||||||
|
|
||||||
if (gpio >= WCOVE_GPIO_NUM)
|
if (gpio >= WCOVE_GPIO_NUM)
|
||||||
return -EOPNOTSUPP;
|
return -ENOTSUPP;
|
||||||
|
|
||||||
return reg + gpio;
|
return reg + gpio;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user