* [PATCH] media: uvcvideo: Fix assignment in if condition
@ 2025-07-15 11:30 Darshan Rathod
2025-07-15 18:42 ` Laurent Pinchart
0 siblings, 1 reply; 2+ messages in thread
From: Darshan Rathod @ 2025-07-15 11:30 UTC (permalink / raw)
To: Laurent Pinchart, Hans de Goede, Mauro Carvalho Chehab,
linux-media, linux-kernel
Cc: Darshan Rathod
The function uvc_input_init() used an assignment of the return value
of input_register_device() within the condition of an if statement.
This coding style is discouraged by the Linux kernel coding style guide
as it can be confused with a comparison and hide potential bugs.
The checkpatch.pl script flags this as an error:
"ERROR: do not use assignment in if condition"
Separate the assignment into its own statement before the conditional
check to improve code readability and adhere to the kernel's
coding standards.
Signed-off-by: Darshan Rathod <darshanrathod475@gmail.com>
---
drivers/media/usb/uvc/uvc_status.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/media/usb/uvc/uvc_status.c b/drivers/media/usb/uvc/uvc_status.c
index ee01dce4b783..3c29c0bb3f7c 100644
--- a/drivers/media/usb/uvc/uvc_status.c
+++ b/drivers/media/usb/uvc/uvc_status.c
@@ -62,7 +62,8 @@ static int uvc_input_init(struct uvc_device *dev)
__set_bit(EV_KEY, input->evbit);
__set_bit(KEY_CAMERA, input->keybit);
- if ((ret = input_register_device(input)) < 0)
+ ret = input_register_device(input);
+ if (ret < 0)
goto error;
dev->input = input;
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] media: uvcvideo: Fix assignment in if condition
2025-07-15 11:30 [PATCH] media: uvcvideo: Fix assignment in if condition Darshan Rathod
@ 2025-07-15 18:42 ` Laurent Pinchart
0 siblings, 0 replies; 2+ messages in thread
From: Laurent Pinchart @ 2025-07-15 18:42 UTC (permalink / raw)
To: Darshan Rathod
Cc: Hans de Goede, Mauro Carvalho Chehab, linux-media, linux-kernel
Hi Darshan,
Thank you for the patch.
On Tue, Jul 15, 2025 at 11:30:56AM +0000, Darshan Rathod wrote:
> The function uvc_input_init() used an assignment of the return value
s/used/uses/
> of input_register_device() within the condition of an if statement.
>
> This coding style is discouraged by the Linux kernel coding style guide
> as it can be confused with a comparison and hide potential bugs.
> The checkpatch.pl script flags this as an error:
> "ERROR: do not use assignment in if condition"
>
> Separate the assignment into its own statement before the conditional
> check to improve code readability and adhere to the kernel's
> coding standards.
>
> Signed-off-by: Darshan Rathod <darshanrathod475@gmail.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
I'll update the commit message as mentioned above when applying, no need
for a v2.
> ---
> drivers/media/usb/uvc/uvc_status.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/media/usb/uvc/uvc_status.c b/drivers/media/usb/uvc/uvc_status.c
> index ee01dce4b783..3c29c0bb3f7c 100644
> --- a/drivers/media/usb/uvc/uvc_status.c
> +++ b/drivers/media/usb/uvc/uvc_status.c
> @@ -62,7 +62,8 @@ static int uvc_input_init(struct uvc_device *dev)
> __set_bit(EV_KEY, input->evbit);
> __set_bit(KEY_CAMERA, input->keybit);
>
> - if ((ret = input_register_device(input)) < 0)
> + ret = input_register_device(input);
> + if (ret < 0)
> goto error;
>
> dev->input = input;
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-07-15 18:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-15 11:30 [PATCH] media: uvcvideo: Fix assignment in if condition Darshan Rathod
2025-07-15 18:42 ` Laurent Pinchart
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).