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

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'pinctrl-v5.5-4' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl

Pull pin control fixes from Linus Walleij:
"Two fixes for pin control, not much to say about it, it's just regular
driver fixes:

- Fix erroneous shift in the Meson driver

- Make Lochnagar select the GPIOLIB Kconfig symbol"

* tag 'pinctrl-v5.5-4' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl:
pinctrl: meson: Fix wrong shift value when get drive-strength
pinctrl: lochnagar: select GPIOLIB

+2
+1
drivers/pinctrl/cirrus/Kconfig
··· 2 2 config PINCTRL_LOCHNAGAR 3 3 tristate "Cirrus Logic Lochnagar pinctrl driver" 4 4 depends on MFD_LOCHNAGAR 5 + select GPIOLIB 5 6 select PINMUX 6 7 select PINCONF 7 8 select GENERIC_PINCONF
+1
drivers/pinctrl/meson/pinctrl-meson.c
··· 441 441 return ret; 442 442 443 443 meson_calc_reg_and_bit(bank, pin, REG_DS, &reg, &bit); 444 + bit = bit << 1; 444 445 445 446 ret = regmap_read(pc->reg_ds, reg, &val); 446 447 if (ret)