gpio: crystalcove: Use -ENOTSUPP consistently
[ Upstream commit ace0ebe5c98d66889f19e0f30e2518d0c58d0e04 ] The GPIO library expects the drivers to return -ENOTSUPP in some cases and not using analogue POSIX code. Make the driver to follow this. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
390aff3f03
commit
ba208490ef
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ static inline int to_reg(int gpio, enum ctrl_register reg_type)
|
||||||
case 0x5e:
|
case 0x5e:
|
||||||
return GPIOPANELCTL;
|
return GPIOPANELCTL;
|
||||||
default:
|
default:
|
||||||
return -EOPNOTSUPP;
|
return -ENOTSUPP;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue