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

Merge tag 'reset-fixes-for-v6.10' of git://git.pengutronix.de/pza/linux into arm/fixes

Reset controller fixes for v6.10

Fix a missing GPIOLIB dependency for the GPIO reset controller and add
a missing MODULE_DESCRIPTION for the hi6220 reset driver to fix some
build warnings.

* tag 'reset-fixes-for-v6.10' of git://git.pengutronix.de/pza/linux:
reset: hisilicon: hi6220: add missing MODULE_DESCRIPTION() macro
reset: gpio: Fix missing gpiolib dependency for GPIO reset controller

Link: https://lore.kernel.org/r/20240626163443.61384-1-p.zabel@pengutronix.de
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

+2
+1
drivers/reset/Kconfig
··· 68 68 69 69 config RESET_GPIO 70 70 tristate "GPIO reset controller" 71 + depends on GPIOLIB 71 72 help 72 73 This enables a generic reset controller for resets attached via 73 74 GPIOs. Typically for OF platforms this driver expects "reset-gpios"
+1
drivers/reset/hisilicon/hi6220_reset.c
··· 219 219 220 220 postcore_initcall(hi6220_reset_init); 221 221 222 + MODULE_DESCRIPTION("Hisilicon Hi6220 reset controller driver"); 222 223 MODULE_LICENSE("GPL v2");