treewide: Fix typos in printk
This patch fixes spelling typos found in printk. Signed-off-by: Masanari Iida <standby24x7@gmail.com> Acked-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
2f097267e7
commit
bc8282a730
|
@ -244,7 +244,7 @@ int fmc_device_register_n_gw(struct fmc_device **devs, int n,
|
|||
if (!fmc->carrier_name || !fmc->carrier_data ||
|
||||
!fmc->device_id) {
|
||||
dev_err(fmc->hwdev,
|
||||
"deivce nr %i: carrier name, "
|
||||
"device nr %i: carrier name, "
|
||||
"data or dev_id not set\n", i);
|
||||
ret = -EINVAL;
|
||||
}
|
||||
|
|
|
@ -276,7 +276,7 @@ amdgpu_ucode_get_load_type(struct amdgpu_device *adev, int load_type)
|
|||
else
|
||||
return AMDGPU_FW_LOAD_PSP;
|
||||
default:
|
||||
DRM_ERROR("Unknow firmware load type\n");
|
||||
DRM_ERROR("Unknown firmware load type\n");
|
||||
}
|
||||
|
||||
return AMDGPU_FW_LOAD_DIRECT;
|
||||
|
|
|
@ -1626,7 +1626,7 @@ static void cnl_cdclk_pll_disable(struct drm_i915_private *dev_priv)
|
|||
|
||||
/* Timeout 200us */
|
||||
if (wait_for((I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK) == 0, 1))
|
||||
DRM_ERROR("timout waiting for CDCLK PLL unlock\n");
|
||||
DRM_ERROR("timeout waiting for CDCLK PLL unlock\n");
|
||||
|
||||
dev_priv->cdclk.hw.vco = 0;
|
||||
}
|
||||
|
@ -1644,7 +1644,7 @@ static void cnl_cdclk_pll_enable(struct drm_i915_private *dev_priv, int vco)
|
|||
|
||||
/* Timeout 200us */
|
||||
if (wait_for((I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK) != 0, 1))
|
||||
DRM_ERROR("timout waiting for CDCLK PLL lock\n");
|
||||
DRM_ERROR("timeout waiting for CDCLK PLL lock\n");
|
||||
|
||||
dev_priv->cdclk.hw.vco = vco;
|
||||
}
|
||||
|
|
|
@ -321,7 +321,7 @@ static int qed_pglub_rbc_attn_cb(struct qed_hwfn *p_hwfn)
|
|||
tmp = qed_rd(p_hwfn, p_hwfn->p_dpc_ptt,
|
||||
PGLUE_B_REG_TX_ERR_WR_DETAILS_ICPL);
|
||||
if (tmp & PGLUE_ATTENTION_ICPL_VALID)
|
||||
DP_INFO(p_hwfn, "ICPL eror - %08x\n", tmp);
|
||||
DP_INFO(p_hwfn, "ICPL error - %08x\n", tmp);
|
||||
|
||||
tmp = qed_rd(p_hwfn, p_hwfn->p_dpc_ptt,
|
||||
PGLUE_B_REG_MASTER_ZLR_ERR_DETAILS);
|
||||
|
|
|
@ -4431,7 +4431,7 @@ void rtl8xxxu_gen1_init_aggregation(struct rtl8xxxu_priv *priv)
|
|||
timeout = page_thresh;
|
||||
else if (rtl8xxxu_dma_agg_pages <= 6)
|
||||
dev_err(&priv->udev->dev,
|
||||
"%s: dma_agg_pages=%i too small, minium is 6\n",
|
||||
"%s: dma_agg_pages=%i too small, minimum is 6\n",
|
||||
__func__, rtl8xxxu_dma_agg_pages);
|
||||
else
|
||||
dev_err(&priv->udev->dev,
|
||||
|
|
|
@ -786,7 +786,7 @@ static int aac_src_restart_adapter(struct aac_dev *dev, int bled, u8 reset_type)
|
|||
if (!is_ctrl_up)
|
||||
dev_err(&dev->pdev->dev, "IOP reset failed\n");
|
||||
else {
|
||||
dev_info(&dev->pdev->dev, "IOP reset succeded\n");
|
||||
dev_info(&dev->pdev->dev, "IOP reset succeeded\n");
|
||||
goto set_startup;
|
||||
}
|
||||
}
|
||||
|
@ -808,7 +808,7 @@ static int aac_src_restart_adapter(struct aac_dev *dev, int bled, u8 reset_type)
|
|||
ret = -ENODEV;
|
||||
goto out;
|
||||
} else
|
||||
dev_info(&dev->pdev->dev, "SOFT reset succeded\n");
|
||||
dev_info(&dev->pdev->dev, "SOFT reset succeeded\n");
|
||||
}
|
||||
|
||||
set_startup:
|
||||
|
|
|
@ -1882,7 +1882,7 @@ static int qedi_map_scsi_sg(struct qedi_ctx *qedi, struct qedi_cmd *cmd)
|
|||
bd[bd_count].sge_len = (u16)sg_len;
|
||||
|
||||
QEDI_INFO(&qedi->dbg_ctx, QEDI_LOG_IO,
|
||||
"single-cashed-sgl: bd_count:%d addr=%llx, len=%x",
|
||||
"single-cached-sgl: bd_count:%d addr=%llx, len=%x",
|
||||
sg_count, addr, sg_len);
|
||||
|
||||
return ++bd_count;
|
||||
|
|
|
@ -500,7 +500,7 @@ int orangefs_normalize_to_errno(__s32 error_code)
|
|||
* server.
|
||||
*/
|
||||
} else if (error_code > 0) {
|
||||
gossip_err("orangefs: error status receieved.\n");
|
||||
gossip_err("orangefs: error status received.\n");
|
||||
gossip_err("orangefs: assuming error code is inverted.\n");
|
||||
error_code = -error_code;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue