diff options
author | Manisha Singh <[email protected]> | 2024-08-29 03:51:55 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2024-08-29 11:56:16 +0200 |
commit | b7059df44f12a481ed257b242607c0ff64b36a95 (patch) | |
tree | e484f5a70cfae529465790ed9b599c9370f09786 | |
parent | 399763befd12a0b1e396ca7c6949bfc2f79583ae (diff) |
staging: rtl8712: Calculate size from pointer
Calculate the size from the pointer instead of struct to adhere to kernel
coding style.
Signed-off-by: Manisha Singh <[email protected]>
Tested-by: Philipp Hortmann <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/rtl8712/rtl871x_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |