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

Commit 5b07e07f authored by Kalle Valo's avatar Kalle Valo
Browse files

ath10k: fix checkpatch warnings about parenthesis alignment



CHECK: Alignment should match open parenthesis

Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent bd8bdbb6
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -645,7 +645,8 @@ static ssize_t ath10k_write_simulate_fw_crash(struct file *file,
		 * firmware variants in order to force a firmware crash.
		 */
		ret = ath10k_wmi_vdev_set_param(ar, 0x7fff,
					ar->wmi.vdev_param->rts_threshold, 0);
						ar->wmi.vdev_param->rts_threshold,
						0);
	} else if (!strcmp(buf, "assert")) {
		ath10k_info(ar, "simulating firmware assert crash\n");
		ret = ath10k_debug_fw_assert(ar);
+7 −6
Original line number Diff line number Diff line
@@ -1291,7 +1291,8 @@ static int ath10k_peer_assoc_qos_ap(struct ath10k *ar,
		   sta->listen_interval - mac80211 patch required.
		   Currently use 10 seconds */
		ret = ath10k_wmi_set_ap_ps_param(ar, arvif->vdev_id, sta->addr,
					WMI_AP_PS_PEER_PARAM_AGEOUT_TIME, 10);
						 WMI_AP_PS_PEER_PARAM_AGEOUT_TIME,
						 10);
		if (ret) {
			ath10k_warn(ar, "failed to set ap ps peer param ageout time for vdev %i: %d\n",
				    arvif->vdev_id, ret);
+16 −14
Original line number Diff line number Diff line
@@ -1859,7 +1859,8 @@ static void ath10k_wmi_event_dfs(struct ath10k *ar,
	}
}

static void ath10k_wmi_event_spectral_scan(struct ath10k *ar,
static void
ath10k_wmi_event_spectral_scan(struct ath10k *ar,
			       struct wmi_single_phyerr_rx_event *event,
			       u64 tsf)
{
@@ -3520,7 +3521,8 @@ int ath10k_wmi_vdev_delete(struct ath10k *ar, u32 vdev_id)
	return ath10k_wmi_cmd_send(ar, skb, ar->wmi.cmd->vdev_delete_cmdid);
}

static int ath10k_wmi_vdev_start_restart(struct ath10k *ar,
static int
ath10k_wmi_vdev_start_restart(struct ath10k *ar,
			      const struct wmi_vdev_start_request_arg *arg,
			      u32 cmd_id)
{
+1 −1

File changed.

Contains only whitespace changes.

+6 −6

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+7 −7

File changed.

Contains only whitespace changes.

+4 −4

File changed.

Contains only whitespace changes.

+5 −5

File changed.

Contains only whitespace changes.

Loading