linux-staging.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 1/2] staging: rtl8712: Fix style issues in rtl871x_io.c
@ 2024-08-28 22:21 Manisha Singh
  2024-08-28 22:21 ` [PATCH v3 2/2] staging: rtl8712: Calculate size from pointer Manisha Singh
  2024-08-29  5:37 ` [PATCH v3 1/2] staging: rtl8712: Fix style issues in rtl871x_io.c Philipp Hortmann
  0 siblings, 2 replies; 4+ messages in thread
From: Manisha Singh @ 2024-08-28 22:21 UTC (permalink / raw)
  To: florian.c.schilhabel, gregkh, linux-staging, linux-kernel
  Cc: philipp.g.hortmann, Manisha Singh

Refactor the _init_intf_hdl() function to avoid multiple
assignments in a single statement. This change improves code readability
and adheres to kernel coding style guidelines.

Signed-off-by: Manisha Singh <masingh.linux@gmail.com>
---
Changes since v2:
	- commit message updated.
	- assignment done before goto fail.

Changes since v1:
	Broke the patch into 2 different fixes.

 drivers/staging/rtl8712/rtl871x_io.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/rtl8712/rtl871x_io.c b/drivers/staging/rtl8712/rtl871x_io.c
index 6789a4c98564..378da0aa7f55 100644
--- a/drivers/staging/rtl8712/rtl871x_io.c
+++ b/drivers/staging/rtl8712/rtl871x_io.c
@@ -48,8 +48,8 @@ static uint _init_intf_hdl(struct _adapter *padapter,
 	set_intf_funs = &(r8712_usb_set_intf_funs);
 	set_intf_ops = &r8712_usb_set_intf_ops;
 	init_intf_priv = &r8712_usb_init_intf_priv;
-	pintf_priv = pintf_hdl->pintfpriv = kmalloc(sizeof(struct intf_priv),
-						    GFP_ATOMIC);
+	pintf_priv = kmalloc(sizeof(struct intf_priv), GFP_ATOMIC);
+	pintf_hdl->pintfpriv = pintf_priv;
 	if (!pintf_priv)
 		goto _init_intf_hdl_fail;
 	pintf_hdl->adapter = (u8 *)padapter;
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH v3 2/2] staging: rtl8712: Calculate size from pointer
  2024-08-28 22:21 [PATCH v3 1/2] staging: rtl8712: Fix style issues in rtl871x_io.c Manisha Singh
@ 2024-08-28 22:21 ` Manisha Singh
  2024-08-29  5:38   ` Philipp Hortmann
  2024-08-29  5:37 ` [PATCH v3 1/2] staging: rtl8712: Fix style issues in rtl871x_io.c Philipp Hortmann
  1 sibling, 1 reply; 4+ messages in thread
From: Manisha Singh @ 2024-08-28 22:21 UTC (permalink / raw)
  To: florian.c.schilhabel, gregkh, linux-staging, linux-kernel
  Cc: philipp.g.hortmann, Manisha Singh

Calculate the size from the pointer instead of struct to adhere to kernel
coding style.

Signed-off-by: Manisha Singh <masingh.linux@gmail.com>
---
Changes since v2:
        commit message updated.

Changes since v1:
        Broke the patch into 2 different fixes.

 drivers/staging/rtl8712/rtl871x_io.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8712/rtl871x_io.c b/drivers/staging/rtl8712/rtl871x_io.c
index 378da0aa7f55..20e080e284dd 100644
--- a/drivers/staging/rtl8712/rtl871x_io.c
+++ b/drivers/staging/rtl8712/rtl871x_io.c
@@ -48,7 +48,7 @@ static uint _init_intf_hdl(struct _adapter *padapter,
 	set_intf_funs = &(r8712_usb_set_intf_funs);
 	set_intf_ops = &r8712_usb_set_intf_ops;
 	init_intf_priv = &r8712_usb_init_intf_priv;
-	pintf_priv = kmalloc(sizeof(struct intf_priv), GFP_ATOMIC);
+	pintf_priv = kmalloc(sizeof(*pintf_priv), GFP_ATOMIC);
 	pintf_hdl->pintfpriv = pintf_priv;
 	if (!pintf_priv)
 		goto _init_intf_hdl_fail;
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v3 1/2] staging: rtl8712: Fix style issues in rtl871x_io.c
  2024-08-28 22:21 [PATCH v3 1/2] staging: rtl8712: Fix style issues in rtl871x_io.c Manisha Singh
  2024-08-28 22:21 ` [PATCH v3 2/2] staging: rtl8712: Calculate size from pointer Manisha Singh
@ 2024-08-29  5:37 ` Philipp Hortmann
  1 sibling, 0 replies; 4+ messages in thread
From: Philipp Hortmann @ 2024-08-29  5:37 UTC (permalink / raw)
  To: Manisha Singh, florian.c.schilhabel, gregkh, linux-staging,
	linux-kernel

On 8/29/24 00:21, Manisha Singh wrote:
> Refactor the _init_intf_hdl() function to avoid multiple
> assignments in a single statement. This change improves code readability
> and adheres to kernel coding style guidelines.
> 
> Signed-off-by: Manisha Singh <masingh.linux@gmail.com>
> ---
> Changes since v2:
> 	- commit message updated.
> 	- assignment done before goto fail.
> 
> Changes since v1:
> 	Broke the patch into 2 different fixes.
> 
>   drivers/staging/rtl8712/rtl871x_io.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/staging/rtl8712/rtl871x_io.c b/drivers/staging/rtl8712/rtl871x_io.c
> index 6789a4c98564..378da0aa7f55 100644
> --- a/drivers/staging/rtl8712/rtl871x_io.c
> +++ b/drivers/staging/rtl8712/rtl871x_io.c
> @@ -48,8 +48,8 @@ static uint _init_intf_hdl(struct _adapter *padapter,
>   	set_intf_funs = &(r8712_usb_set_intf_funs);
>   	set_intf_ops = &r8712_usb_set_intf_ops;
>   	init_intf_priv = &r8712_usb_init_intf_priv;
> -	pintf_priv = pintf_hdl->pintfpriv = kmalloc(sizeof(struct intf_priv),
> -						    GFP_ATOMIC);
> +	pintf_priv = kmalloc(sizeof(struct intf_priv), GFP_ATOMIC);
> +	pintf_hdl->pintfpriv = pintf_priv;
>   	if (!pintf_priv)
>   		goto _init_intf_hdl_fail;
>   	pintf_hdl->adapter = (u8 *)padapter;

Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> AW-NU120

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v3 2/2] staging: rtl8712: Calculate size from pointer
  2024-08-28 22:21 ` [PATCH v3 2/2] staging: rtl8712: Calculate size from pointer Manisha Singh
@ 2024-08-29  5:38   ` Philipp Hortmann
  0 siblings, 0 replies; 4+ messages in thread
From: Philipp Hortmann @ 2024-08-29  5:38 UTC (permalink / raw)
  To: Manisha Singh, florian.c.schilhabel, gregkh, linux-staging,
	linux-kernel

On 8/29/24 00:21, Manisha Singh wrote:
> Calculate the size from the pointer instead of struct to adhere to kernel
> coding style.
> 
> Signed-off-by: Manisha Singh <masingh.linux@gmail.com>
> ---
> Changes since v2:
>          commit message updated.
> 
> Changes since v1:
>          Broke the patch into 2 different fixes.
> 
>   drivers/staging/rtl8712/rtl871x_io.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/rtl8712/rtl871x_io.c b/drivers/staging/rtl8712/rtl871x_io.c
> index 378da0aa7f55..20e080e284dd 100644
> --- a/drivers/staging/rtl8712/rtl871x_io.c
> +++ b/drivers/staging/rtl8712/rtl871x_io.c
> @@ -48,7 +48,7 @@ static uint _init_intf_hdl(struct _adapter *padapter,
>   	set_intf_funs = &(r8712_usb_set_intf_funs);
>   	set_intf_ops = &r8712_usb_set_intf_ops;
>   	init_intf_priv = &r8712_usb_init_intf_priv;
> -	pintf_priv = kmalloc(sizeof(struct intf_priv), GFP_ATOMIC);
> +	pintf_priv = kmalloc(sizeof(*pintf_priv), GFP_ATOMIC);
>   	pintf_hdl->pintfpriv = pintf_priv;
>   	if (!pintf_priv)
>   		goto _init_intf_hdl_fail;

Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> AW-NU120

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-08-29  5:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-28 22:21 [PATCH v3 1/2] staging: rtl8712: Fix style issues in rtl871x_io.c Manisha Singh
2024-08-28 22:21 ` [PATCH v3 2/2] staging: rtl8712: Calculate size from pointer Manisha Singh
2024-08-29  5:38   ` Philipp Hortmann
2024-08-29  5:37 ` [PATCH v3 1/2] staging: rtl8712: Fix style issues in rtl871x_io.c Philipp Hortmann

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).