mirror of
https://github.com/torvalds/linux.git
synced 2026-05-22 06:01:53 +02:00
wifi: rsi: rsi_91x_main: Remove unnecessary (void*) conversions
No need cast (void*) to (struct rsi_common *). Signed-off-by: Wu Yunchuan <yunchuan@nfschina.com> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://lore.kernel.org/r/20230803073529.3666653-1-yunchuan@nfschina.com
This commit is contained in:
parent
6d5d2dbd00
commit
db2be1a01f
|
|
@ -270,14 +270,14 @@ static void rsi_tx_scheduler_thread(struct rsi_common *common)
|
|||
#ifdef CONFIG_RSI_COEX
|
||||
enum rsi_host_intf rsi_get_host_intf(void *priv)
|
||||
{
|
||||
struct rsi_common *common = (struct rsi_common *)priv;
|
||||
struct rsi_common *common = priv;
|
||||
|
||||
return common->priv->rsi_host_intf;
|
||||
}
|
||||
|
||||
void rsi_set_bt_context(void *priv, void *bt_context)
|
||||
{
|
||||
struct rsi_common *common = (struct rsi_common *)priv;
|
||||
struct rsi_common *common = priv;
|
||||
|
||||
common->bt_adapter = bt_context;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user