Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 521dffcc authored by Vasanthakumar Thiagarajan's avatar Vasanthakumar Thiagarajan Committed by Kalle Valo
Browse files

ath6kl: Pass ath6kl structure to ath6kl_init() instead of net_device



ar is again taken from private area of net_device in ath6kl_init(), pass
ar directly.

Signed-off-by: default avatarVasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 116b3a2e
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -1461,9 +1461,8 @@ static int ath6kl_init_hw_params(struct ath6kl *ar)
	return 0;
}

static int ath6kl_init(struct net_device *dev)
static int ath6kl_init(struct ath6kl *ar)
{
	struct ath6kl *ar = ath6kl_priv(dev);
	int status = 0;
	s32 timeleft;

@@ -1632,7 +1631,7 @@ int ath6kl_core_init(struct ath6kl *ar)
	if (ret)
		goto err_htc_cleanup;

	ret = ath6kl_init(ar->net_dev);
	ret = ath6kl_init(ar);
	if (ret)
		goto err_htc_cleanup;