* [PATCH] staging: gpib: Resolve prefixing 0x with decimal
@ 2025-02-04 13:51 Ajith P V
2025-02-04 14:06 ` Greg KH
0 siblings, 1 reply; 4+ messages in thread
From: Ajith P V @ 2025-02-04 13:51 UTC (permalink / raw)
To: dpenkler, gregkh; +Cc: linux-staging, linux-kernel, Ajith P V
- pr_info() of hp_82341_attach() in hp_82341 uses 0x%u which is defective.
- The iobase is of u32 and correct prefix is 0x%x.
- This error reported by checkpatch with below message:
ERROR: Prefixing 0x with decimal output is defective.
Signed-off-by: Ajith P V <ajithpv.linux@gmail.com>
---
drivers/staging/gpib/hp_82341/hp_82341.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/gpib/hp_82341/hp_82341.c b/drivers/staging/gpib/hp_82341/hp_82341.c
index 800f99c05566..740c450914dc 100644
--- a/drivers/staging/gpib/hp_82341/hp_82341.c
+++ b/drivers/staging/gpib/hp_82341/hp_82341.c
@@ -723,7 +723,7 @@ static int hp_82341_attach(gpib_board_t *board, const gpib_board_config_t *confi
hp_priv->hw_version = HW_VERSION_82341C;
hp_priv->io_region_offset = 0x400;
}
- pr_info("hp_82341: base io 0x%u\n", iobase);
+ pr_info("hp_82341: base io 0x%x\n", iobase);
for (i = 0; i < hp_82341_num_io_regions; ++i) {
start_addr = iobase + i * hp_priv->io_region_offset;
if (!request_region(start_addr, hp_82341_region_iosize, "hp_82341")) {
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] staging: gpib: Resolve prefixing 0x with decimal
2025-02-04 13:51 Ajith P V
@ 2025-02-04 14:06 ` Greg KH
0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2025-02-04 14:06 UTC (permalink / raw)
To: Ajith P V; +Cc: dpenkler, linux-staging, linux-kernel
On Tue, Feb 04, 2025 at 07:21:31PM +0530, Ajith P V wrote:
> - pr_info() of hp_82341_attach() in hp_82341 uses 0x%u which is defective.
> - The iobase is of u32 and correct prefix is 0x%x.
> - This error reported by checkpatch with below message:
> ERROR: Prefixing 0x with decimal output is defective.
>
> Signed-off-by: Ajith P V <ajithpv.linux@gmail.com>
> ---
> drivers/staging/gpib/hp_82341/hp_82341.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/gpib/hp_82341/hp_82341.c b/drivers/staging/gpib/hp_82341/hp_82341.c
> index 800f99c05566..740c450914dc 100644
> --- a/drivers/staging/gpib/hp_82341/hp_82341.c
> +++ b/drivers/staging/gpib/hp_82341/hp_82341.c
> @@ -723,7 +723,7 @@ static int hp_82341_attach(gpib_board_t *board, const gpib_board_config_t *confi
> hp_priv->hw_version = HW_VERSION_82341C;
> hp_priv->io_region_offset = 0x400;
> }
> - pr_info("hp_82341: base io 0x%u\n", iobase);
> + pr_info("hp_82341: base io 0x%x\n", iobase);
When drivers work properly, they are quiet. Lines like this should just
be removed.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] staging: gpib: Resolve prefixing 0x with decimal
@ 2025-02-06 9:28 Ajith P V
2025-02-14 12:04 ` Dave Penkler
0 siblings, 1 reply; 4+ messages in thread
From: Ajith P V @ 2025-02-06 9:28 UTC (permalink / raw)
To: dpenkler, gregkh; +Cc: linux-staging, linux-kernel, Ajith P V
- pr_err() of hp82335_attach() in hp82335 uses 0x%u which is defective.
- The iobase is of u32 and correct prefix is 0x%x.
- This error reported by checkpatch with below message:
ERROR: Prefixing 0x with decimal output is defective
Signed-off-by: Ajith P V <ajithpv.linux@gmail.com>
---
drivers/staging/gpib/hp_82335/hp82335.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/gpib/hp_82335/hp82335.c b/drivers/staging/gpib/hp_82335/hp82335.c
index 451d5dc6d340..6ce79b17a419 100644
--- a/drivers/staging/gpib/hp_82335/hp82335.c
+++ b/drivers/staging/gpib/hp_82335/hp82335.c
@@ -274,7 +274,7 @@ static int hp82335_attach(gpib_board_t *board, const gpib_board_config_t *config
case 0xfc000:
break;
default:
- pr_err("hp82335: invalid base io address 0x%u\n", config->ibbase);
+ pr_err("hp82335: invalid base io address 0x%x\n", config->ibbase);
return -EINVAL;
}
if (!request_mem_region(upper_iomem_base, hp82335_upper_iomem_size, "hp82335")) {
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] staging: gpib: Resolve prefixing 0x with decimal
2025-02-06 9:28 [PATCH] staging: gpib: Resolve prefixing 0x with decimal Ajith P V
@ 2025-02-14 12:04 ` Dave Penkler
0 siblings, 0 replies; 4+ messages in thread
From: Dave Penkler @ 2025-02-14 12:04 UTC (permalink / raw)
To: Ajith P V; +Cc: gregkh, linux-staging, linux-kernel
On Thu, Feb 06, 2025 at 02:58:15PM +0530, Ajith P V wrote:
> - pr_err() of hp82335_attach() in hp82335 uses 0x%u which is defective.
> - The iobase is of u32 and correct prefix is 0x%x.
> - This error reported by checkpatch with below message:
> ERROR: Prefixing 0x with decimal output is defective
>
> Signed-off-by: Ajith P V <ajithpv.linux@gmail.com>
> ---
> drivers/staging/gpib/hp_82335/hp82335.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/gpib/hp_82335/hp82335.c b/drivers/staging/gpib/hp_82335/hp82335.c
> index 451d5dc6d340..6ce79b17a419 100644
> --- a/drivers/staging/gpib/hp_82335/hp82335.c
> +++ b/drivers/staging/gpib/hp_82335/hp82335.c
> @@ -274,7 +274,7 @@ static int hp82335_attach(gpib_board_t *board, const gpib_board_config_t *config
> case 0xfc000:
> break;
> default:
> - pr_err("hp82335: invalid base io address 0x%u\n", config->ibbase);
> + pr_err("hp82335: invalid base io address 0x%x\n", config->ibbase);
> return -EINVAL;
> }
> if (!request_mem_region(upper_iomem_base, hp82335_upper_iomem_size, "hp82335")) {
> --
> 2.43.0
>
Hi,
Thanks for your patch.
This patch is now superseded by
https://lore.kernel.org/linux-staging/20250214114708.28947-10-dpenkler@gmail.com/T/#u
which uses dev_err instead of pr_err and corrects the defective
prefix problem also.
-dave
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-02-14 12:04 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-06 9:28 [PATCH] staging: gpib: Resolve prefixing 0x with decimal Ajith P V
2025-02-14 12:04 ` Dave Penkler
-- strict thread matches above, loose matches on Subject: below --
2025-02-04 13:51 Ajith P V
2025-02-04 14:06 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox