* linux-next: manual merge of the backlight tree with the drm-misc tree
@ 2025-10-30 4:14 Stephen Rothwell
2025-10-30 8:14 ` Thomas Zimmermann
0 siblings, 1 reply; 3+ messages in thread
From: Stephen Rothwell @ 2025-10-30 4:14 UTC (permalink / raw)
To: Lee Jones, Simona Vetter
Cc: Thomas Zimmermann, Kaustabh Chakraborty, Neil Armstrong,
Intel Graphics, DRI, Linux Kernel Mailing List,
Linux Next Mailing List
[-- Attachment #1: Type: text/plain, Size: 6381 bytes --]
Hi all,
After merging the backlight tree, today's linux-next build (x86_64
allmodconfig) failed like this:
drivers/gpu/drm/panel/panel-synaptics-tddi.c:41:41: error: array type has incomplete element type 'struct regulator_bulk_data'
41 | static const struct regulator_bulk_data tddi_supplies[] = {
| ^~~~~~~~~~~~~
drivers/gpu/drm/panel/panel-synaptics-tddi.c: In function 'tddi_prepare':
drivers/gpu/drm/panel/panel-synaptics-tddi.c:72:15: error: implicit declaration of function 'regulator_bulk_enable' [-Wimplicit-function-declaration]
72 | ret = regulator_bulk_enable(ARRAY_SIZE(tddi_supplies), ctx->supplies);
| ^~~~~~~~~~~~~~~~~~~~~
In file included from include/linux/dev_printk.h:14,
from include/linux/device.h:15,
from include/linux/backlight.h:12,
from drivers/gpu/drm/panel/panel-synaptics-tddi.c:8:
include/linux/compiler.h:201:82: error: expression in static assertion is not an integer
201 | #define __BUILD_BUG_ON_ZERO_MSG(e, msg, ...) ((int)sizeof(struct {_Static_assert(!(e), msg);}))
| ^
include/linux/compiler.h:206:33: note: in expansion of macro '__BUILD_BUG_ON_ZERO_MSG'
206 | #define __must_be_array(a) __BUILD_BUG_ON_ZERO_MSG(!__is_array(a), \
| ^~~~~~~~~~~~~~~~~~~~~~~
include/linux/array_size.h:11:59: note: in expansion of macro '__must_be_array'
11 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
| ^~~~~~~~~~~~~~~
drivers/gpu/drm/panel/panel-synaptics-tddi.c:72:37: note: in expansion of macro 'ARRAY_SIZE'
72 | ret = regulator_bulk_enable(ARRAY_SIZE(tddi_supplies), ctx->supplies);
| ^~~~~~~~~~
drivers/gpu/drm/panel/panel-synaptics-tddi.c: In function 'tddi_unprepare':
drivers/gpu/drm/panel/panel-synaptics-tddi.c:101:9: error: implicit declaration of function 'regulator_bulk_disable' [-Wimplicit-function-declaration]
101 | regulator_bulk_disable(ARRAY_SIZE(tddi_supplies), ctx->supplies);
| ^~~~~~~~~~~~~~~~~~~~~~
include/linux/compiler.h:201:82: error: expression in static assertion is not an integer
201 | #define __BUILD_BUG_ON_ZERO_MSG(e, msg, ...) ((int)sizeof(struct {_Static_assert(!(e), msg);}))
| ^
include/linux/compiler.h:206:33: note: in expansion of macro '__BUILD_BUG_ON_ZERO_MSG'
206 | #define __must_be_array(a) __BUILD_BUG_ON_ZERO_MSG(!__is_array(a), \
| ^~~~~~~~~~~~~~~~~~~~~~~
include/linux/array_size.h:11:59: note: in expansion of macro '__must_be_array'
11 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
| ^~~~~~~~~~~~~~~
drivers/gpu/drm/panel/panel-synaptics-tddi.c:101:32: note: in expansion of macro 'ARRAY_SIZE'
101 | regulator_bulk_disable(ARRAY_SIZE(tddi_supplies), ctx->supplies);
| ^~~~~~~~~~
drivers/gpu/drm/panel/panel-synaptics-tddi.c: In function 'tddi_probe':
drivers/gpu/drm/panel/panel-synaptics-tddi.c:183:15: error: implicit declaration of function 'devm_regulator_bulk_get_const' [-Wimplicit-function-declaration]
183 | ret = devm_regulator_bulk_get_const(dev, ARRAY_SIZE(tddi_supplies),
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
include/linux/compiler.h:201:82: error: expression in static assertion is not an integer
201 | #define __BUILD_BUG_ON_ZERO_MSG(e, msg, ...) ((int)sizeof(struct {_Static_assert(!(e), msg);}))
| ^
include/linux/compiler.h:206:33: note: in expansion of macro '__BUILD_BUG_ON_ZERO_MSG'
206 | #define __must_be_array(a) __BUILD_BUG_ON_ZERO_MSG(!__is_array(a), \
| ^~~~~~~~~~~~~~~~~~~~~~~
include/linux/array_size.h:11:59: note: in expansion of macro '__must_be_array'
11 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
| ^~~~~~~~~~~~~~~
drivers/gpu/drm/panel/panel-synaptics-tddi.c:183:50: note: in expansion of macro 'ARRAY_SIZE'
183 | ret = devm_regulator_bulk_get_const(dev, ARRAY_SIZE(tddi_supplies),
| ^~~~~~~~~~
drivers/gpu/drm/panel/panel-synaptics-tddi.c: At top level:
drivers/gpu/drm/panel/panel-synaptics-tddi.c:41:41: error: 'tddi_supplies' defined but not used [-Werror=unused-variable]
41 | static const struct regulator_bulk_data tddi_supplies[] = {
| ^~~~~~~~~~~~~
cc1: all warnings being treated as errors
Caused by commit
243ce64b2b37 ("backlight: Do not include <linux/fb.h> in header file")
interacting with commit
3eae82503f4f ("drm: panel: add support for Synaptics TDDI series DSI panels")
from the drm-misc tree.
I have applied the following merge fix patch. It (or something linke it)
should be applied to the drm-misc tree.
From: Stephen Rothwell <sfr@canb.auug.org.au>
Date: Thu, 30 Oct 2025 14:57:03 +1100
Subject: [PATCH] fix up for "backlight: Do not include <linux/fb.h> in header file"
interacting with commit
3eae82503f4f ("drm: panel: add support for Synaptics TDDI series DSI panels")
from the drm-misc tree.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
drivers/gpu/drm/panel/panel-synaptics-tddi.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/panel/panel-synaptics-tddi.c b/drivers/gpu/drm/panel/panel-synaptics-tddi.c
index a4b3cbdebb6c..0aea1854710e 100644
--- a/drivers/gpu/drm/panel/panel-synaptics-tddi.c
+++ b/drivers/gpu/drm/panel/panel-synaptics-tddi.c
@@ -9,6 +9,7 @@
#include <linux/gpio/consumer.h>
#include <linux/module.h>
#include <linux/of.h>
+#include <linux/regulator/consumer.h>
#include <video/mipi_display.h>
--
2.51.1
--
Cheers,
Stephen Rothwell
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: linux-next: manual merge of the backlight tree with the drm-misc tree
2025-10-30 4:14 linux-next: manual merge of the backlight tree with the drm-misc tree Stephen Rothwell
@ 2025-10-30 8:14 ` Thomas Zimmermann
2025-10-30 8:17 ` Neil Armstrong
0 siblings, 1 reply; 3+ messages in thread
From: Thomas Zimmermann @ 2025-10-30 8:14 UTC (permalink / raw)
To: Stephen Rothwell, Lee Jones, Simona Vetter
Cc: Kaustabh Chakraborty, Neil Armstrong, Intel Graphics, DRI,
Linux Kernel Mailing List, Linux Next Mailing List
Hi
Am 30.10.25 um 05:14 schrieb Stephen Rothwell:
> Hi all,
>
> After merging the backlight tree, today's linux-next build (x86_64
> allmodconfig) failed like this:
>
> drivers/gpu/drm/panel/panel-synaptics-tddi.c:41:41: error: array type has incomplete element type 'struct regulator_bulk_data'
> 41 | static const struct regulator_bulk_data tddi_supplies[] = {
> | ^~~~~~~~~~~~~
> drivers/gpu/drm/panel/panel-synaptics-tddi.c: In function 'tddi_prepare':
> drivers/gpu/drm/panel/panel-synaptics-tddi.c:72:15: error: implicit declaration of function 'regulator_bulk_enable' [-Wimplicit-function-declaration]
> 72 | ret = regulator_bulk_enable(ARRAY_SIZE(tddi_supplies), ctx->supplies);
> | ^~~~~~~~~~~~~~~~~~~~~
> In file included from include/linux/dev_printk.h:14,
> from include/linux/device.h:15,
> from include/linux/backlight.h:12,
> from drivers/gpu/drm/panel/panel-synaptics-tddi.c:8:
> include/linux/compiler.h:201:82: error: expression in static assertion is not an integer
> 201 | #define __BUILD_BUG_ON_ZERO_MSG(e, msg, ...) ((int)sizeof(struct {_Static_assert(!(e), msg);}))
> | ^
> include/linux/compiler.h:206:33: note: in expansion of macro '__BUILD_BUG_ON_ZERO_MSG'
> 206 | #define __must_be_array(a) __BUILD_BUG_ON_ZERO_MSG(!__is_array(a), \
> | ^~~~~~~~~~~~~~~~~~~~~~~
> include/linux/array_size.h:11:59: note: in expansion of macro '__must_be_array'
> 11 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
> | ^~~~~~~~~~~~~~~
> drivers/gpu/drm/panel/panel-synaptics-tddi.c:72:37: note: in expansion of macro 'ARRAY_SIZE'
> 72 | ret = regulator_bulk_enable(ARRAY_SIZE(tddi_supplies), ctx->supplies);
> | ^~~~~~~~~~
> drivers/gpu/drm/panel/panel-synaptics-tddi.c: In function 'tddi_unprepare':
> drivers/gpu/drm/panel/panel-synaptics-tddi.c:101:9: error: implicit declaration of function 'regulator_bulk_disable' [-Wimplicit-function-declaration]
> 101 | regulator_bulk_disable(ARRAY_SIZE(tddi_supplies), ctx->supplies);
> | ^~~~~~~~~~~~~~~~~~~~~~
> include/linux/compiler.h:201:82: error: expression in static assertion is not an integer
> 201 | #define __BUILD_BUG_ON_ZERO_MSG(e, msg, ...) ((int)sizeof(struct {_Static_assert(!(e), msg);}))
> | ^
> include/linux/compiler.h:206:33: note: in expansion of macro '__BUILD_BUG_ON_ZERO_MSG'
> 206 | #define __must_be_array(a) __BUILD_BUG_ON_ZERO_MSG(!__is_array(a), \
> | ^~~~~~~~~~~~~~~~~~~~~~~
> include/linux/array_size.h:11:59: note: in expansion of macro '__must_be_array'
> 11 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
> | ^~~~~~~~~~~~~~~
> drivers/gpu/drm/panel/panel-synaptics-tddi.c:101:32: note: in expansion of macro 'ARRAY_SIZE'
> 101 | regulator_bulk_disable(ARRAY_SIZE(tddi_supplies), ctx->supplies);
> | ^~~~~~~~~~
> drivers/gpu/drm/panel/panel-synaptics-tddi.c: In function 'tddi_probe':
> drivers/gpu/drm/panel/panel-synaptics-tddi.c:183:15: error: implicit declaration of function 'devm_regulator_bulk_get_const' [-Wimplicit-function-declaration]
> 183 | ret = devm_regulator_bulk_get_const(dev, ARRAY_SIZE(tddi_supplies),
> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> include/linux/compiler.h:201:82: error: expression in static assertion is not an integer
> 201 | #define __BUILD_BUG_ON_ZERO_MSG(e, msg, ...) ((int)sizeof(struct {_Static_assert(!(e), msg);}))
> | ^
> include/linux/compiler.h:206:33: note: in expansion of macro '__BUILD_BUG_ON_ZERO_MSG'
> 206 | #define __must_be_array(a) __BUILD_BUG_ON_ZERO_MSG(!__is_array(a), \
> | ^~~~~~~~~~~~~~~~~~~~~~~
> include/linux/array_size.h:11:59: note: in expansion of macro '__must_be_array'
> 11 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
> | ^~~~~~~~~~~~~~~
> drivers/gpu/drm/panel/panel-synaptics-tddi.c:183:50: note: in expansion of macro 'ARRAY_SIZE'
> 183 | ret = devm_regulator_bulk_get_const(dev, ARRAY_SIZE(tddi_supplies),
> | ^~~~~~~~~~
> drivers/gpu/drm/panel/panel-synaptics-tddi.c: At top level:
> drivers/gpu/drm/panel/panel-synaptics-tddi.c:41:41: error: 'tddi_supplies' defined but not used [-Werror=unused-variable]
> 41 | static const struct regulator_bulk_data tddi_supplies[] = {
> | ^~~~~~~~~~~~~
> cc1: all warnings being treated as errors
>
> Caused by commit
>
> 243ce64b2b37 ("backlight: Do not include <linux/fb.h> in header file")
>
> interacting with commit
>
> 3eae82503f4f ("drm: panel: add support for Synaptics TDDI series DSI panels")
>
> from the drm-misc tree.
>
> I have applied the following merge fix patch. It (or something linke it)
> should be applied to the drm-misc tree.
>
> From: Stephen Rothwell <sfr@canb.auug.org.au>
> Date: Thu, 30 Oct 2025 14:57:03 +1100
> Subject: [PATCH] fix up for "backlight: Do not include <linux/fb.h> in header file"
>
> interacting with commit
>
> 3eae82503f4f ("drm: panel: add support for Synaptics TDDI series DSI panels")
>
> from the drm-misc tree.
>
> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
I think we can take your patch into drm-misc. Thanks for fixing this.
Best regards
Thomas
> ---
> drivers/gpu/drm/panel/panel-synaptics-tddi.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/gpu/drm/panel/panel-synaptics-tddi.c b/drivers/gpu/drm/panel/panel-synaptics-tddi.c
> index a4b3cbdebb6c..0aea1854710e 100644
> --- a/drivers/gpu/drm/panel/panel-synaptics-tddi.c
> +++ b/drivers/gpu/drm/panel/panel-synaptics-tddi.c
> @@ -9,6 +9,7 @@
> #include <linux/gpio/consumer.h>
> #include <linux/module.h>
> #include <linux/of.h>
> +#include <linux/regulator/consumer.h>
>
> #include <video/mipi_display.h>
>
--
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstrasse 146, 90461 Nuernberg, Germany
GF: Ivo Totev, Andrew Myers, Andrew McDonald, Boudien Moerman
HRB 36809 (AG Nuernberg)
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: linux-next: manual merge of the backlight tree with the drm-misc tree
2025-10-30 8:14 ` Thomas Zimmermann
@ 2025-10-30 8:17 ` Neil Armstrong
0 siblings, 0 replies; 3+ messages in thread
From: Neil Armstrong @ 2025-10-30 8:17 UTC (permalink / raw)
To: Thomas Zimmermann, Stephen Rothwell, Lee Jones, Simona Vetter
Cc: Kaustabh Chakraborty, Intel Graphics, DRI,
Linux Kernel Mailing List, Linux Next Mailing List
On 10/30/25 09:14, Thomas Zimmermann wrote:
> Hi
>
> Am 30.10.25 um 05:14 schrieb Stephen Rothwell:
>> Hi all,
>>
>> After merging the backlight tree, today's linux-next build (x86_64
>> allmodconfig) failed like this:
>>
>> drivers/gpu/drm/panel/panel-synaptics-tddi.c:41:41: error: array type has incomplete element type 'struct regulator_bulk_data'
>> 41 | static const struct regulator_bulk_data tddi_supplies[] = {
>> | ^~~~~~~~~~~~~
>> drivers/gpu/drm/panel/panel-synaptics-tddi.c: In function 'tddi_prepare':
>> drivers/gpu/drm/panel/panel-synaptics-tddi.c:72:15: error: implicit declaration of function 'regulator_bulk_enable' [-Wimplicit-function-declaration]
>> 72 | ret = regulator_bulk_enable(ARRAY_SIZE(tddi_supplies), ctx->supplies);
>> | ^~~~~~~~~~~~~~~~~~~~~
>> In file included from include/linux/dev_printk.h:14,
>> from include/linux/device.h:15,
>> from include/linux/backlight.h:12,
>> from drivers/gpu/drm/panel/panel-synaptics-tddi.c:8:
>> include/linux/compiler.h:201:82: error: expression in static assertion is not an integer
>> 201 | #define __BUILD_BUG_ON_ZERO_MSG(e, msg, ...) ((int)sizeof(struct {_Static_assert(!(e), msg);}))
>> | ^
>> include/linux/compiler.h:206:33: note: in expansion of macro '__BUILD_BUG_ON_ZERO_MSG'
>> 206 | #define __must_be_array(a) __BUILD_BUG_ON_ZERO_MSG(!__is_array(a), \
>> | ^~~~~~~~~~~~~~~~~~~~~~~
>> include/linux/array_size.h:11:59: note: in expansion of macro '__must_be_array'
>> 11 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
>> | ^~~~~~~~~~~~~~~
>> drivers/gpu/drm/panel/panel-synaptics-tddi.c:72:37: note: in expansion of macro 'ARRAY_SIZE'
>> 72 | ret = regulator_bulk_enable(ARRAY_SIZE(tddi_supplies), ctx->supplies);
>> | ^~~~~~~~~~
>> drivers/gpu/drm/panel/panel-synaptics-tddi.c: In function 'tddi_unprepare':
>> drivers/gpu/drm/panel/panel-synaptics-tddi.c:101:9: error: implicit declaration of function 'regulator_bulk_disable' [-Wimplicit-function-declaration]
>> 101 | regulator_bulk_disable(ARRAY_SIZE(tddi_supplies), ctx->supplies);
>> | ^~~~~~~~~~~~~~~~~~~~~~
>> include/linux/compiler.h:201:82: error: expression in static assertion is not an integer
>> 201 | #define __BUILD_BUG_ON_ZERO_MSG(e, msg, ...) ((int)sizeof(struct {_Static_assert(!(e), msg);}))
>> | ^
>> include/linux/compiler.h:206:33: note: in expansion of macro '__BUILD_BUG_ON_ZERO_MSG'
>> 206 | #define __must_be_array(a) __BUILD_BUG_ON_ZERO_MSG(!__is_array(a), \
>> | ^~~~~~~~~~~~~~~~~~~~~~~
>> include/linux/array_size.h:11:59: note: in expansion of macro '__must_be_array'
>> 11 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
>> | ^~~~~~~~~~~~~~~
>> drivers/gpu/drm/panel/panel-synaptics-tddi.c:101:32: note: in expansion of macro 'ARRAY_SIZE'
>> 101 | regulator_bulk_disable(ARRAY_SIZE(tddi_supplies), ctx->supplies);
>> | ^~~~~~~~~~
>> drivers/gpu/drm/panel/panel-synaptics-tddi.c: In function 'tddi_probe':
>> drivers/gpu/drm/panel/panel-synaptics-tddi.c:183:15: error: implicit declaration of function 'devm_regulator_bulk_get_const' [-Wimplicit-function-declaration]
>> 183 | ret = devm_regulator_bulk_get_const(dev, ARRAY_SIZE(tddi_supplies),
>> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>> include/linux/compiler.h:201:82: error: expression in static assertion is not an integer
>> 201 | #define __BUILD_BUG_ON_ZERO_MSG(e, msg, ...) ((int)sizeof(struct {_Static_assert(!(e), msg);}))
>> | ^
>> include/linux/compiler.h:206:33: note: in expansion of macro '__BUILD_BUG_ON_ZERO_MSG'
>> 206 | #define __must_be_array(a) __BUILD_BUG_ON_ZERO_MSG(!__is_array(a), \
>> | ^~~~~~~~~~~~~~~~~~~~~~~
>> include/linux/array_size.h:11:59: note: in expansion of macro '__must_be_array'
>> 11 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]) + __must_be_array(arr))
>> | ^~~~~~~~~~~~~~~
>> drivers/gpu/drm/panel/panel-synaptics-tddi.c:183:50: note: in expansion of macro 'ARRAY_SIZE'
>> 183 | ret = devm_regulator_bulk_get_const(dev, ARRAY_SIZE(tddi_supplies),
>> | ^~~~~~~~~~
>> drivers/gpu/drm/panel/panel-synaptics-tddi.c: At top level:
>> drivers/gpu/drm/panel/panel-synaptics-tddi.c:41:41: error: 'tddi_supplies' defined but not used [-Werror=unused-variable]
>> 41 | static const struct regulator_bulk_data tddi_supplies[] = {
>> | ^~~~~~~~~~~~~
>> cc1: all warnings being treated as errors
>>
>> Caused by commit
>>
>> 243ce64b2b37 ("backlight: Do not include <linux/fb.h> in header file")
>>
>> interacting with commit
>>
>> 3eae82503f4f ("drm: panel: add support for Synaptics TDDI series DSI panels")
>>
>> from the drm-misc tree.
>>
>> I have applied the following merge fix patch. It (or something linke it)
>> should be applied to the drm-misc tree.
>>
>> From: Stephen Rothwell <sfr@canb.auug.org.au>
>> Date: Thu, 30 Oct 2025 14:57:03 +1100
>> Subject: [PATCH] fix up for "backlight: Do not include <linux/fb.h> in header file"
>>
>> interacting with commit
>>
>> 3eae82503f4f ("drm: panel: add support for Synaptics TDDI series DSI panels")
>>
>> from the drm-misc tree.
>>
>> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
>
> Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
>
> I think we can take your patch into drm-misc. Thanks for fixing this.
I'm preparing the patch right now.
Thanks,
Neil
>
> Best regards
> Thomas
>
>> ---
>> drivers/gpu/drm/panel/panel-synaptics-tddi.c | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/gpu/drm/panel/panel-synaptics-tddi.c b/drivers/gpu/drm/panel/panel-synaptics-tddi.c
>> index a4b3cbdebb6c..0aea1854710e 100644
>> --- a/drivers/gpu/drm/panel/panel-synaptics-tddi.c
>> +++ b/drivers/gpu/drm/panel/panel-synaptics-tddi.c
>> @@ -9,6 +9,7 @@
>> #include <linux/gpio/consumer.h>
>> #include <linux/module.h>
>> #include <linux/of.h>
>> +#include <linux/regulator/consumer.h>
>> #include <video/mipi_display.h>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-10-30 8:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-30 4:14 linux-next: manual merge of the backlight tree with the drm-misc tree Stephen Rothwell
2025-10-30 8:14 ` Thomas Zimmermann
2025-10-30 8:17 ` Neil Armstrong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).