Skip to content

Commit 3d1e364

Browse files
committed
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
2 parents dd6cbcc + ed42d80 commit 3d1e364

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

drivers/gpio/Kconfig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
# GPIO infrastructure and drivers
44
#
55

6+
config GPIOLIB_LEGACY
7+
def_bool y
8+
69
menuconfig GPIOLIB
710
bool "GPIO Support"
811
help
@@ -12,9 +15,6 @@ menuconfig GPIOLIB
1215

1316
If unsure, say N.
1417

15-
config GPIOLIB_LEGACY
16-
def_bool y
17-
1818
if GPIOLIB
1919

2020
config GPIOLIB_FASTPATH_LIMIT

tools/gpio/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ $(OUTPUT)gpio-watch: $(GPIO_WATCH_IN)
7777

7878
clean:
7979
rm -f $(ALL_PROGRAMS)
80-
rm -f $(OUTPUT)include/linux/gpio.h
80+
rm -rf $(OUTPUT)include
8181
find $(or $(OUTPUT),.) -name '*.o' -delete -o -name '\.*.d' -delete -o -name '\.*.cmd' -delete
8282

8383
install: $(ALL_PROGRAMS)

0 commit comments

Comments
 (0)