This is a note to let you know that I've just added the patch titled gpio: idio-16: Actually make use of the GPIO_IDIO_16 symbol namespace to the 6.12-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: gpio-idio-16-actually-make-use-of-the-gpio_idio_16-s.patch and it can be found in the queue-6.12 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit 8845b746c447c715080e448d62aeed25f73fb205 Author: Uwe Kleine-König <u.kleine-koenig@xxxxxxxxxxxx> Date: Tue Dec 3 18:26:30 2024 +0100 gpio: idio-16: Actually make use of the GPIO_IDIO_16 symbol namespace [ Upstream commit 9ac4b58fcef0f9fc03fa6e126a5f53c1c71ada8a ] DEFAULT_SYMBOL_NAMESPACE must already be defined when <linux/export.h> is included. So move the define above the include block. Fixes: b9b1fc1ae119 ("gpio: idio-16: Introduce the ACCES IDIO-16 GPIO library module") Signed-off-by: Uwe Kleine-König <u.kleine-koenig@xxxxxxxxxxxx> Acked-by: William Breathitt Gray <wbg@xxxxxxxxxx> Link: https://lore.kernel.org/r/20241203172631.1647792-2-u.kleine-koenig@xxxxxxxxxxxx Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@xxxxxxxxxx> Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/drivers/gpio/gpio-idio-16.c b/drivers/gpio/gpio-idio-16.c index 2c9512589297..0103be977c66 100644 --- a/drivers/gpio/gpio-idio-16.c +++ b/drivers/gpio/gpio-idio-16.c @@ -3,6 +3,9 @@ * GPIO library for the ACCES IDIO-16 family * Copyright (C) 2022 William Breathitt Gray */ + +#define DEFAULT_SYMBOL_NAMESPACE "GPIO_IDIO_16" + #include <linux/bits.h> #include <linux/device.h> #include <linux/err.h> @@ -14,8 +17,6 @@ #include "gpio-idio-16.h" -#define DEFAULT_SYMBOL_NAMESPACE "GPIO_IDIO_16" - #define IDIO_16_DAT_BASE 0x0 #define IDIO_16_OUT_BASE IDIO_16_DAT_BASE #define IDIO_16_IN_BASE (IDIO_16_DAT_BASE + 1)