Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'intel-gpio-v6.9-1' of git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel into gpio/for-current

intel-gpio for v6.9-1

* Fix returned code in the error path in Intel PMIC GPIO drivers

The following is an automated git shortlog grouped by driver:

crystalcove:
- Use -ENOTSUPP consistently

wcove:
- Use -ENOTSUPP consistently

+2 -2
+1 -1
drivers/gpio/gpio-crystalcove.c
··· 92 92 case 0x5e: 93 93 return GPIOPANELCTL; 94 94 default: 95 - return -EOPNOTSUPP; 95 + return -ENOTSUPP; 96 96 } 97 97 } 98 98
+1 -1
drivers/gpio/gpio-wcove.c
··· 104 104 unsigned int reg = type == CTRL_IN ? GPIO_IN_CTRL_BASE : GPIO_OUT_CTRL_BASE; 105 105 106 106 if (gpio >= WCOVE_GPIO_NUM) 107 - return -EOPNOTSUPP; 107 + return -ENOTSUPP; 108 108 109 109 return reg + gpio; 110 110 }