This is a note to let you know that I've just added the patch titled fbdev/simplefb: change loglevel when the power domains cannot be parsed to the 6.8-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: fbdev-simplefb-change-loglevel-when-the-power-domain.patch and it can be found in the queue-6.8 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit 1e119ba30d3172bf58af6b8c0efb4859de28c247 Author: Brian Masney <bmasney@xxxxxxxxxx> Date: Tue Dec 12 14:57:54 2023 -0500 fbdev/simplefb: change loglevel when the power domains cannot be parsed [ Upstream commit 4350aa21cca48a5d951ba108290bad703fbc0630 ] When the power domains cannot be parsed, the message is incorrectly logged as an info message. Let's change this to an error since an error is returned. Fixes: 92a511a568e4 ("fbdev/simplefb: Add support for generic power-domains") Signed-off-by: Brian Masney <bmasney@xxxxxxxxxx> Acked-by: Andrew Halaney <ahalaney@xxxxxxxxxx> Acked-by: Javier Martinez Canillas <javierm@xxxxxxxxxx> Acked-by: Thierry Reding <treding@xxxxxxxxxx> Signed-off-by: Hans de Goede <hdegoede@xxxxxxxxxx> Link: https://patchwork.freedesktop.org/patch/msgid/20231212195754.232303-1-bmasney@xxxxxxxxxx Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/drivers/video/fbdev/simplefb.c b/drivers/video/fbdev/simplefb.c index 6f58ee276ad1b..028a565250476 100644 --- a/drivers/video/fbdev/simplefb.c +++ b/drivers/video/fbdev/simplefb.c @@ -470,7 +470,7 @@ static int simplefb_attach_genpds(struct simplefb_par *par, if (err == -ENOENT) return 0; - dev_info(dev, "failed to parse power-domains: %d\n", err); + dev_err(dev, "failed to parse power-domains: %d\n", err); return err; }