treewide: Fix typo in printk messages
This patch fix spelling typo in printk messages. 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
f42cf8d6a3
commit
d939be3add
@ -841,7 +841,7 @@ static int processCFI(const u8 *start, const u8 *end, unsigned long targetLoc,
|
||||
break;
|
||||
case DW_CFA_GNU_window_save:
|
||||
default:
|
||||
unw_debug("UNKNOW OPCODE 0x%x\n", opcode);
|
||||
unw_debug("UNKNOWN OPCODE 0x%x\n", opcode);
|
||||
result = 0;
|
||||
break;
|
||||
}
|
||||
|
@ -721,7 +721,7 @@ void __init early_init_devtree(void *params)
|
||||
*/
|
||||
of_scan_flat_dt(early_init_dt_scan_cpus, NULL);
|
||||
if (boot_cpuid < 0) {
|
||||
printk("Failed to indentify boot CPU !\n");
|
||||
printk("Failed to identify boot CPU !\n");
|
||||
BUG();
|
||||
}
|
||||
|
||||
|
@ -50,14 +50,14 @@ void p1022rdk_set_pixel_clock(unsigned int pixclock)
|
||||
/* Map the global utilities registers. */
|
||||
guts_np = of_find_compatible_node(NULL, NULL, "fsl,p1022-guts");
|
||||
if (!guts_np) {
|
||||
pr_err("p1022rdk: missing global utilties device node\n");
|
||||
pr_err("p1022rdk: missing global utilities device node\n");
|
||||
return;
|
||||
}
|
||||
|
||||
guts = of_iomap(guts_np, 0);
|
||||
of_node_put(guts_np);
|
||||
if (!guts) {
|
||||
pr_err("p1022rdk: could not map global utilties device\n");
|
||||
pr_err("p1022rdk: could not map global utilities device\n");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -57,7 +57,7 @@ int rodata_test(void)
|
||||
/* test 3: check the value hasn't changed */
|
||||
/* If this test fails, we managed to overwrite the data */
|
||||
if (!rodata_test_data) {
|
||||
printk(KERN_ERR "rodata_test: Test 3 failes (end data)\n");
|
||||
printk(KERN_ERR "rodata_test: Test 3 fails (end data)\n");
|
||||
return -ENODEV;
|
||||
}
|
||||
/* test 4: check if the rodata section is 4Kb aligned */
|
||||
|
@ -436,7 +436,7 @@ static int max1027_probe(struct spi_device *spi)
|
||||
indio_dev->num_channels * 2,
|
||||
GFP_KERNEL);
|
||||
if (st->buffer == NULL) {
|
||||
dev_err(&indio_dev->dev, "Can't allocate bufffer\n");
|
||||
dev_err(&indio_dev->dev, "Can't allocate buffer\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
|
@ -1092,7 +1092,7 @@ inf_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
}
|
||||
card->ci = get_card_info(ent->driver_data);
|
||||
if (!card->ci) {
|
||||
pr_info("mISDN: do not have informations about adapter at %s\n",
|
||||
pr_info("mISDN: do not have information about adapter at %s\n",
|
||||
pci_name(pdev));
|
||||
kfree(card);
|
||||
pci_disable_device(pdev);
|
||||
|
@ -295,7 +295,7 @@ dsp_cmx_del_conf_member(struct dsp *dsp)
|
||||
}
|
||||
}
|
||||
printk(KERN_WARNING
|
||||
"%s: dsp is not present in its own conf_meber list.\n",
|
||||
"%s: dsp is not present in its own conf_member list.\n",
|
||||
__func__);
|
||||
|
||||
return -EINVAL;
|
||||
|
@ -460,7 +460,7 @@ dsp_control_req(struct dsp *dsp, struct mISDNhead *hh, struct sk_buff *skb)
|
||||
}
|
||||
if (dsp_debug & DEBUG_DSP_CORE)
|
||||
printk(KERN_DEBUG "%s: enable mixing of "
|
||||
"tx-data with conf mebers\n", __func__);
|
||||
"tx-data with conf members\n", __func__);
|
||||
dsp->tx_mix = 1;
|
||||
dsp_cmx_hardware(dsp->conf, dsp);
|
||||
dsp_rx_off(dsp);
|
||||
@ -474,7 +474,7 @@ dsp_control_req(struct dsp *dsp, struct mISDNhead *hh, struct sk_buff *skb)
|
||||
}
|
||||
if (dsp_debug & DEBUG_DSP_CORE)
|
||||
printk(KERN_DEBUG "%s: disable mixing of "
|
||||
"tx-data with conf mebers\n", __func__);
|
||||
"tx-data with conf members\n", __func__);
|
||||
dsp->tx_mix = 0;
|
||||
dsp_cmx_hardware(dsp->conf, dsp);
|
||||
dsp_rx_off(dsp);
|
||||
|
@ -408,7 +408,7 @@ static int msi001_s_ctrl(struct v4l2_ctrl *ctrl)
|
||||
s->mixer_gain->cur.val, s->if_gain->val);
|
||||
break;
|
||||
default:
|
||||
dev_dbg(&s->spi->dev, "unkown control %d\n", ctrl->id);
|
||||
dev_dbg(&s->spi->dev, "unknown control %d\n", ctrl->id);
|
||||
ret = -EINVAL;
|
||||
}
|
||||
|
||||
|
@ -591,7 +591,7 @@ int bnx2x_vf_mcast(struct bnx2x *bp, struct bnx2x_virtf *vf,
|
||||
mc = kzalloc(mc_num * sizeof(struct bnx2x_mcast_list_elem),
|
||||
GFP_KERNEL);
|
||||
if (!mc) {
|
||||
BNX2X_ERR("Cannot Configure mulicasts due to lack of memory\n");
|
||||
BNX2X_ERR("Cannot Configure multicasts due to lack of memory\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
}
|
||||
|
@ -794,7 +794,7 @@ int qlcnic_82xx_config_intr_coalesce(struct qlcnic_adapter *adapter,
|
||||
|
||||
if (rv)
|
||||
netdev_err(adapter->netdev,
|
||||
"Failed to set Rx coalescing parametrs\n");
|
||||
"Failed to set Rx coalescing parameters\n");
|
||||
|
||||
return rv;
|
||||
}
|
||||
|
@ -4342,7 +4342,7 @@ static void ath10k_sta_rc_update(struct ieee80211_hw *hw,
|
||||
bw = WMI_PEER_CHWIDTH_80MHZ;
|
||||
break;
|
||||
case IEEE80211_STA_RX_BW_160:
|
||||
ath10k_warn(ar, "Invalid bandwith %d in rc update for %pM\n",
|
||||
ath10k_warn(ar, "Invalid bandwidth %d in rc update for %pM\n",
|
||||
sta->bandwidth, sta->addr);
|
||||
bw = WMI_PEER_CHWIDTH_20MHZ;
|
||||
break;
|
||||
|
@ -336,7 +336,7 @@ static void rtl8723be_dm_find_minimum_rssi(struct ieee80211_hw *hw)
|
||||
rtl_dm_dig->min_undec_pwdb_for_dm =
|
||||
rtlpriv->dm.entry_min_undec_sm_pwdb;
|
||||
RT_TRACE(rtlpriv, COMP_BB_POWERSAVING, DBG_LOUD,
|
||||
"AP Ext Port or disconnet PWDB = 0x%x\n",
|
||||
"AP Ext Port or disconnect PWDB = 0x%x\n",
|
||||
rtl_dm_dig->min_undec_pwdb_for_dm);
|
||||
}
|
||||
RT_TRACE(rtlpriv, COMP_DIG, DBG_LOUD, "MinUndecoratedPWDBForDM =%d\n",
|
||||
|
@ -899,7 +899,7 @@ static void rtl8821ae_dm_dig(struct ieee80211_hw *hw)
|
||||
|
||||
if (rtlpriv->falsealm_cnt.cnt_all > 10000) {
|
||||
RT_TRACE(rtlpriv, COMP_DIG, DBG_LOUD,
|
||||
"Abnornally false alarm case.\n");
|
||||
"Abnormally false alarm case.\n");
|
||||
|
||||
if (dm_digtable->large_fa_hit != 3)
|
||||
dm_digtable->large_fa_hit++;
|
||||
|
@ -357,7 +357,7 @@ static int parse_slot_config(int slot,
|
||||
}
|
||||
if (flags & HPEE_FUNCTION_INFO_CFG_FREE_FORM) {
|
||||
/* I have no idea how to handle this */
|
||||
printk("function %d have free-form confgiuration, skipping ",
|
||||
printk("function %d have free-form configuration, skipping ",
|
||||
num_func);
|
||||
pos = p0 + function_len;
|
||||
continue;
|
||||
|
@ -237,7 +237,7 @@ int beiscsi_mccq_compl(struct beiscsi_hba *phba,
|
||||
beiscsi_log(phba, KERN_WARNING,
|
||||
BEISCSI_LOG_INIT | BEISCSI_LOG_EH |
|
||||
BEISCSI_LOG_CONFIG,
|
||||
"BC_%d : Insufficent Buffer Error "
|
||||
"BC_%d : Insufficient Buffer Error "
|
||||
"Resp_Len : %d Actual_Resp_Len : %d\n",
|
||||
mbx_resp_hdr->response_length,
|
||||
mbx_resp_hdr->actual_resp_len);
|
||||
|
@ -186,7 +186,7 @@ static int _osd_get_print_system_info(struct osd_dev *od,
|
||||
|
||||
if (unlikely(len > sizeof(odi->systemid))) {
|
||||
OSD_ERR("OSD Target error: OSD_SYSTEM_ID too long(%d). "
|
||||
"device idetification might not work\n", len);
|
||||
"device identification might not work\n", len);
|
||||
len = sizeof(odi->systemid);
|
||||
}
|
||||
odi->systemid_len = len;
|
||||
|
@ -1274,7 +1274,7 @@ qla82xx_pinit_from_rom(scsi_qla_host_t *vha)
|
||||
|
||||
if (off == ADDR_ERROR) {
|
||||
ql_log(ql_log_fatal, vha, 0x0116,
|
||||
"Unknow addr: 0x%08lx.\n", buf[i].addr);
|
||||
"Unknown addr: 0x%08lx.\n", buf[i].addr);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -4174,7 +4174,7 @@ qla83xx_schedule_work(scsi_qla_host_t *base_vha, int work_code)
|
||||
break;
|
||||
default:
|
||||
ql_log(ql_log_warn, base_vha, 0xb05f,
|
||||
"Unknow work-code=0x%x.\n", work_code);
|
||||
"Unknown work-code=0x%x.\n", work_code);
|
||||
}
|
||||
|
||||
return;
|
||||
@ -4774,7 +4774,7 @@ qla83xx_idc_state_handler(scsi_qla_host_t *base_vha)
|
||||
break;
|
||||
default:
|
||||
ql_log(ql_log_warn, base_vha, 0xb071,
|
||||
"Unknow Device State: %x.\n", dev_state);
|
||||
"Unknown Device State: %x.\n", dev_state);
|
||||
qla83xx_idc_unlock(base_vha, 0);
|
||||
qla8xxx_dev_failed_handler(base_vha);
|
||||
rval = QLA_FUNCTION_FAILED;
|
||||
|
@ -1005,7 +1005,7 @@ rpcrdma_init_fmrs(struct rpcrdma_ia *ia, struct rpcrdma_buffer *buf)
|
||||
int i, rc;
|
||||
|
||||
i = (buf->rb_max_requests + 1) * RPCRDMA_MAX_SEGS;
|
||||
dprintk("RPC: %s: initalizing %d FMRs\n", __func__, i);
|
||||
dprintk("RPC: %s: initializing %d FMRs\n", __func__, i);
|
||||
|
||||
while (i--) {
|
||||
r = kzalloc(sizeof(*r), GFP_KERNEL);
|
||||
@ -1038,7 +1038,7 @@ rpcrdma_init_frmrs(struct rpcrdma_ia *ia, struct rpcrdma_buffer *buf)
|
||||
int i, rc;
|
||||
|
||||
i = (buf->rb_max_requests + 1) * RPCRDMA_MAX_SEGS;
|
||||
dprintk("RPC: %s: initalizing %d FRMRs\n", __func__, i);
|
||||
dprintk("RPC: %s: initializing %d FRMRs\n", __func__, i);
|
||||
|
||||
while (i--) {
|
||||
r = kzalloc(sizeof(*r), GFP_KERNEL);
|
||||
|
@ -456,7 +456,7 @@ static int convert_variable_fields(Dwarf_Die *vr_die, const char *varname,
|
||||
return -EINVAL;
|
||||
}
|
||||
if (field->name[0] == '[') {
|
||||
pr_err("Semantic error: %s is not a pointor"
|
||||
pr_err("Semantic error: %s is not a pointer"
|
||||
" nor array.\n", varname);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user