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 'gpio-fixes-for-v6.17-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux

Pull gpio fixes from Bartosz Golaszewski:

- fix GPIO submenu regression in Kconfig

- fix make clean under tools/gpio/

* tag 'gpio-fixes-for-v6.17-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux:
tools: gpio: remove the include directory on make clean
gpio: fix GPIO submenu in Kconfig

+4 -4
+3 -3
drivers/gpio/Kconfig
··· 3 3 # GPIO infrastructure and drivers 4 4 # 5 5 6 + config GPIOLIB_LEGACY 7 + def_bool y 8 + 6 9 menuconfig GPIOLIB 7 10 bool "GPIO Support" 8 11 help ··· 14 11 one or more of the GPIO drivers below. 15 12 16 13 If unsure, say N. 17 - 18 - config GPIOLIB_LEGACY 19 - def_bool y 20 14 21 15 if GPIOLIB 22 16
+1 -1
tools/gpio/Makefile
··· 77 77 78 78 clean: 79 79 rm -f $(ALL_PROGRAMS) 80 - rm -f $(OUTPUT)include/linux/gpio.h 80 + rm -rf $(OUTPUT)include 81 81 find $(or $(OUTPUT),.) -name '*.o' -delete -o -name '\.*.d' -delete -o -name '\.*.cmd' -delete 82 82 83 83 install: $(ALL_PROGRAMS)