* [PATCH] staging: gpib: gpio: use sizeof(*ptr) in kzalloc
@ 2026-05-03 9:35 Ajanth Badiger
2026-05-03 9:48 ` Greg KH
0 siblings, 1 reply; 2+ messages in thread
From: Ajanth Badiger @ 2026-05-03 9:35 UTC (permalink / raw)
To: dpenkler, gregkh; +Cc: linux-staging, linux-kernel, Ajanth Badiger
Replace sizeof(struct bb_priv) with sizeof(*board->private_data)
to follow kernel coding style and improve maintainability.
checkpatch.pl also reports that LINVAL macro should be enclosed
in parentheses. However, LINVAL intentionally expands to a
comma-separated list of arguments matching the LINFMT format
string used in dbg_printk() calls.
Wrapping it in parentheses would change semantics due to the
comma operator, causing only the last expression to be passed.
Therefore, no change is made to LINVAL.
Signed-off-by: Ajanth Badiger <badigerajanth1301@gmail.com>
---
drivers/staging/gpib/gpio/gpib_bitbang.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/gpib/gpio/gpib_bitbang.c b/drivers/staging/gpib/gpio/gpib_bitbang.c
index 374cd61355e9..2fff9ec9a01c 100644
--- a/drivers/staging/gpib/gpio/gpib_bitbang.c
+++ b/drivers/staging/gpib/gpio/gpib_bitbang.c
@@ -1066,7 +1066,7 @@ static int bb_line_status(const struct gpib_board *board)
static int allocate_private(struct gpib_board *board)
{
- board->private_data = kzalloc(sizeof(struct bb_priv), GFP_KERNEL);
+ board->private_data = kzalloc(sizeof(*board->private_data), GFP_KERNEL);
if (!board->private_data)
return -1;
return 0;
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] staging: gpib: gpio: use sizeof(*ptr) in kzalloc
2026-05-03 9:35 [PATCH] staging: gpib: gpio: use sizeof(*ptr) in kzalloc Ajanth Badiger
@ 2026-05-03 9:48 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2026-05-03 9:48 UTC (permalink / raw)
To: Ajanth Badiger; +Cc: dpenkler, linux-staging, linux-kernel
On Sun, May 03, 2026 at 03:05:58PM +0530, Ajanth Badiger wrote:
> Replace sizeof(struct bb_priv) with sizeof(*board->private_data)
> to follow kernel coding style and improve maintainability.
>
> checkpatch.pl also reports that LINVAL macro should be enclosed
> in parentheses. However, LINVAL intentionally expands to a
> comma-separated list of arguments matching the LINFMT format
> string used in dbg_printk() calls.
>
> Wrapping it in parentheses would change semantics due to the
> comma operator, causing only the last expression to be passed.
>
> Therefore, no change is made to LINVAL.
>
> Signed-off-by: Ajanth Badiger <badigerajanth1301@gmail.com>
> ---
> drivers/staging/gpib/gpio/gpib_bitbang.c | 2 +-
This file is not in the tree, what version did you make this against?
Please always use linux-next for development work.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-05-03 9:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-03 9:35 [PATCH] staging: gpib: gpio: use sizeof(*ptr) in kzalloc Ajanth Badiger
2026-05-03 9:48 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox