* [PATCH] staging: fbtft: Use %pe format specifier for error pointers
@ 2026-04-12 14:45 Mahad Ibrahim
2026-04-13 7:03 ` Andy Shevchenko
0 siblings, 1 reply; 4+ messages in thread
From: Mahad Ibrahim @ 2026-04-12 14:45 UTC (permalink / raw)
To: Andy Shevchenko, Greg Kroah-Hartman
Cc: Shuah Khan, linux-kernel-mentees, dri-devel, linux-fbdev,
linux-staging, linux-kernel, Mahad Ibrahim
The %pe format specifier resolves error pointers to their symbolic
representation. Previously %ld with PTR_ERR() was being used, %pe is a
better alternative.
Fixes the following coccinelle warnings reported by coccicheck:
WARNING: Consider using %pe to print PTR_ERR()
Testing: I do not own the hardware, therefore I could not perform
hardware testing. Compile tested only.
Signed-off-by: Mahad Ibrahim <mahad.ibrahim.dev@gmail.com>
---
drivers/staging/fbtft/fb_ssd1351.c | 3 +--
drivers/staging/fbtft/fbtft-core.c | 3 +--
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/fbtft/fb_ssd1351.c b/drivers/staging/fbtft/fb_ssd1351.c
index 6736b09b2f45..15524b80035a 100644
--- a/drivers/staging/fbtft/fb_ssd1351.c
+++ b/drivers/staging/fbtft/fb_ssd1351.c
@@ -218,8 +218,7 @@ static void register_onboard_backlight(struct fbtft_par *par)
&bl_props);
if (IS_ERR(bd)) {
dev_err(par->info->device,
- "cannot register backlight device (%ld)\n",
- PTR_ERR(bd));
+ "cannot register backlight device (%pe)\n", bd);
return;
}
par->info->bl_dev = bd;
diff --git a/drivers/staging/fbtft/fbtft-core.c b/drivers/staging/fbtft/fbtft-core.c
index f427c0914907..823315dfbf5d 100644
--- a/drivers/staging/fbtft/fbtft-core.c
+++ b/drivers/staging/fbtft/fbtft-core.c
@@ -187,8 +187,7 @@ void fbtft_register_backlight(struct fbtft_par *par)
&fbtft_bl_ops, &bl_props);
if (IS_ERR(bd)) {
dev_err(par->info->device,
- "cannot register backlight device (%ld)\n",
- PTR_ERR(bd));
+ "cannot register backlight device (%pe)\n", bd);
return;
}
par->info->bl_dev = bd;
--
2.39.5
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] staging: fbtft: Use %pe format specifier for error pointers
2026-04-12 14:45 [PATCH] staging: fbtft: Use %pe format specifier for error pointers Mahad Ibrahim
@ 2026-04-13 7:03 ` Andy Shevchenko
2026-04-13 7:49 ` Dan Carpenter
0 siblings, 1 reply; 4+ messages in thread
From: Andy Shevchenko @ 2026-04-13 7:03 UTC (permalink / raw)
To: Mahad Ibrahim
Cc: Andy Shevchenko, Greg Kroah-Hartman, Shuah Khan,
linux-kernel-mentees, dri-devel, linux-fbdev, linux-staging,
linux-kernel
On Sun, Apr 12, 2026 at 5:46 PM Mahad Ibrahim
<mahad.ibrahim.dev@gmail.com> wrote:
>
> The %pe format specifier resolves error pointers to their symbolic
> representation. Previously %ld with PTR_ERR() was being used, %pe is a
> better alternative.
>
> Fixes the following coccinelle warnings reported by coccicheck:
> WARNING: Consider using %pe to print PTR_ERR()
>
> Testing: I do not own the hardware, therefore I could not perform
> hardware testing. Compile tested only.
I don't think it makes any difference for this driver. But I am not
objecting to the change. Up to Greg if he wants to apply or not.
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] staging: fbtft: Use %pe format specifier for error pointers
2026-04-13 7:03 ` Andy Shevchenko
@ 2026-04-13 7:49 ` Dan Carpenter
2026-04-13 7:53 ` Andy Shevchenko
0 siblings, 1 reply; 4+ messages in thread
From: Dan Carpenter @ 2026-04-13 7:49 UTC (permalink / raw)
To: Andy Shevchenko
Cc: Mahad Ibrahim, Andy Shevchenko, Greg Kroah-Hartman, Shuah Khan,
linux-kernel-mentees, dri-devel, linux-fbdev, linux-staging,
linux-kernel
On Mon, Apr 13, 2026 at 10:03:58AM +0300, Andy Shevchenko wrote:
> On Sun, Apr 12, 2026 at 5:46 PM Mahad Ibrahim
> <mahad.ibrahim.dev@gmail.com> wrote:
> >
> > The %pe format specifier resolves error pointers to their symbolic
> > representation. Previously %ld with PTR_ERR() was being used, %pe is a
> > better alternative.
> >
> > Fixes the following coccinelle warnings reported by coccicheck:
> > WARNING: Consider using %pe to print PTR_ERR()
> >
> > Testing: I do not own the hardware, therefore I could not perform
> > hardware testing. Compile tested only.
>
> I don't think it makes any difference for this driver. But I am not
> objecting to the change. Up to Greg if he wants to apply or not.
I always like these changes. I wish that there were an equivalent
%e which printed error codes that weren't stored in an error pointer.
KTODO: introduce a %e type format thing which prints error codes
regards,
dan carpenter
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] staging: fbtft: Use %pe format specifier for error pointers
2026-04-13 7:49 ` Dan Carpenter
@ 2026-04-13 7:53 ` Andy Shevchenko
0 siblings, 0 replies; 4+ messages in thread
From: Andy Shevchenko @ 2026-04-13 7:53 UTC (permalink / raw)
To: Dan Carpenter
Cc: Mahad Ibrahim, Andy Shevchenko, Greg Kroah-Hartman, Shuah Khan,
linux-kernel-mentees, dri-devel, linux-fbdev, linux-staging,
linux-kernel
On Mon, Apr 13, 2026 at 10:49 AM Dan Carpenter <error27@gmail.com> wrote:
> On Mon, Apr 13, 2026 at 10:03:58AM +0300, Andy Shevchenko wrote:
> > On Sun, Apr 12, 2026 at 5:46 PM Mahad Ibrahim
> > <mahad.ibrahim.dev@gmail.com> wrote:
...
> I always like these changes. I wish that there were an equivalent
> %e which printed error codes that weren't stored in an error pointer.
>
> KTODO: introduce a %e type format thing which prints error codes
Never happens until it becomes a C standard.
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-04-13 7:54 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-12 14:45 [PATCH] staging: fbtft: Use %pe format specifier for error pointers Mahad Ibrahim
2026-04-13 7:03 ` Andy Shevchenko
2026-04-13 7:49 ` Dan Carpenter
2026-04-13 7:53 ` Andy Shevchenko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox