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

Commit 0b1587b1 authored by Masanari Iida's avatar Masanari Iida Committed by Jiri Kosina
Browse files

treewide: Fix typo in printk



Correct spelling typo in printk

Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Acked-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 86466036
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -282,7 +282,7 @@ static int get_empty_message_digest(
			}
		} else {
			dev_dbg(device_data->dev, "[%s] Continue hash "
					"calculation, since hmac key avalable",
					"calculation, since hmac key available",
					__func__);
		}
	}
+2 −2
Original line number Diff line number Diff line
@@ -1637,7 +1637,7 @@ int qlcnic_83xx_nic_set_promisc(struct qlcnic_adapter *adapter, u32 mode)
	err = qlcnic_issue_cmd(adapter, &cmd);
	if (err)
		dev_info(&adapter->pdev->dev,
			 "Promiscous mode config failed\n");
			 "Promiscuous mode config failed\n");

	qlcnic_free_mbx_args(&cmd);
	return err;
@@ -3082,7 +3082,7 @@ int qlcnic_83xx_set_settings(struct qlcnic_adapter *adapter,
	status = qlcnic_83xx_set_port_config(adapter);
	if (status) {
		dev_info(&adapter->pdev->dev,
			 "Faild to Set Link Speed and autoneg.\n");
			 "Failed to Set Link Speed and autoneg.\n");
		adapter->ahw->port_config = config;
	}
	return status;
+1 −1
Original line number Diff line number Diff line
@@ -1652,7 +1652,7 @@ static int qlcnic_83xx_process_rcv_ring(struct qlcnic_host_sds_ring *sds_ring,
			break;
		default:
			dev_info(&adapter->pdev->dev,
				 "Unkonwn opcode: 0x%x\n", opcode);
				 "Unknown opcode: 0x%x\n", opcode);
			goto skip;
		}

+1 −1
Original line number Diff line number Diff line
@@ -1199,7 +1199,7 @@ bool wsm_flush_tx(struct cw1200_common *priv)

	if (priv->bh_error) {
		/* In case of failure do not wait for magic. */
		pr_err("[WSM] Fatal error occured, will not flush TX.\n");
		pr_err("[WSM] Fatal error occurred, will not flush TX.\n");
		return false;
	} else {
		/* Get a timestamp of "oldest" frame */
+1 −1
Original line number Diff line number Diff line
@@ -184,7 +184,7 @@ static void iwl_mvm_te_handle_notif(struct iwl_mvm *mvm,
		    (!te_data->vif->bss_conf.assoc ||
		     !te_data->vif->bss_conf.dtim_period)) {
			IWL_ERR(mvm,
				"No assocation and the time event is over already...\n");
				"No association and the time event is over already...\n");
			ieee80211_connection_loss(te_data->vif);
		}

Loading