diff options
author | Phillip Potter <[email protected]> | 2021-08-19 00:42:53 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2021-08-19 07:42:07 +0200 |
commit | b1d0ebf2ed849635e155cc97ea024659c4b21f1a (patch) | |
tree | e60d8586b2f8c7885fb4758fa7f35b1ae48f9f44 | |
parent | c5de6c20dd79d774a486958c582d8ef0bc211ab7 (diff) |
staging: r8188eu: remove free_xmit_priv field from struct hal_ops
Remove free_xmit_priv function pointer field from struct hal_ops definition
in include/hal_intf.h, as it is now no longer used anywhere in the driver.
Signed-off-by: Phillip Potter <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/r8188eu/include/hal_intf.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/staging/r8188eu/include/hal_intf.h b/drivers/staging/r8188eu/include/hal_intf.h index 8a2420095b84..fa252540e596 100644 --- a/drivers/staging/r8188eu/include/hal_intf.h +++ b/drivers/staging/r8188eu/include/hal_intf.h @@ -139,7 +139,6 @@ struct hal_ops { u32 (*inirp_deinit)(struct adapter *padapter); s32 (*init_xmit_priv)(struct adapter *padapter); - void (*free_xmit_priv)(struct adapter *padapter); s32 (*init_recv_priv)(struct adapter *padapter); void (*free_recv_priv)(struct adapter *padapter); |