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

Commit 37680819 authored by Brian Norris's avatar Brian Norris Committed by Kalle Valo
Browse files

mwifiex: debugfs: allow card_reset() to cancel things



The card_reset() implementation should be setting our state flags and
cancelling commands for us (i.e., in mwifiex_shutdown_drv()), so let's
not do it here.

Also, this debugfs file is useful for testing and debugging the reset
feature, so we shouldn't do extra preparatory steps here, as that might
cause different reset behavior, which could either cause new bugs or
paper over existing ones that this debug feature should otherwise help
us catch.

Signed-off-by: default avatarBrian Norris <briannorris@chromium.org>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 87a60212
Loading
Loading
Loading
Loading
+0 −2
Original line number Original line Diff line number Diff line
@@ -940,8 +940,6 @@ mwifiex_reset_write(struct file *file,


	if (adapter->if_ops.card_reset) {
	if (adapter->if_ops.card_reset) {
		dev_info(adapter->dev, "Resetting per request\n");
		dev_info(adapter->dev, "Resetting per request\n");
		adapter->hw_status = MWIFIEX_HW_STATUS_RESET;
		mwifiex_cancel_all_pending_cmd(adapter);
		adapter->if_ops.card_reset(adapter);
		adapter->if_ops.card_reset(adapter);
	}
	}