Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Masanari Iida and committed by
Jiri Kosina
d939be3a f42cf8d6

+25 -25
+1 -1
arch/arc/kernel/unwind.c
··· 841 841 break; 842 842 case DW_CFA_GNU_window_save: 843 843 default: 844 - unw_debug("UNKNOW OPCODE 0x%x\n", opcode); 844 + unw_debug("UNKNOWN OPCODE 0x%x\n", opcode); 845 845 result = 0; 846 846 break; 847 847 }
+1 -1
arch/powerpc/kernel/prom.c
··· 721 721 */ 722 722 of_scan_flat_dt(early_init_dt_scan_cpus, NULL); 723 723 if (boot_cpuid < 0) { 724 - printk("Failed to indentify boot CPU !\n"); 724 + printk("Failed to identify boot CPU !\n"); 725 725 BUG(); 726 726 } 727 727
+2 -2
arch/powerpc/platforms/85xx/p1022_rdk.c
··· 50 50 /* Map the global utilities registers. */ 51 51 guts_np = of_find_compatible_node(NULL, NULL, "fsl,p1022-guts"); 52 52 if (!guts_np) { 53 - pr_err("p1022rdk: missing global utilties device node\n"); 53 + pr_err("p1022rdk: missing global utilities device node\n"); 54 54 return; 55 55 } 56 56 57 57 guts = of_iomap(guts_np, 0); 58 58 of_node_put(guts_np); 59 59 if (!guts) { 60 - pr_err("p1022rdk: could not map global utilties device\n"); 60 + pr_err("p1022rdk: could not map global utilities device\n"); 61 61 return; 62 62 } 63 63
+1 -1
arch/x86/kernel/test_rodata.c
··· 57 57 /* test 3: check the value hasn't changed */ 58 58 /* If this test fails, we managed to overwrite the data */ 59 59 if (!rodata_test_data) { 60 - printk(KERN_ERR "rodata_test: Test 3 failes (end data)\n"); 60 + printk(KERN_ERR "rodata_test: Test 3 fails (end data)\n"); 61 61 return -ENODEV; 62 62 } 63 63 /* test 4: check if the rodata section is 4Kb aligned */
+1 -1
drivers/iio/adc/max1027.c
··· 436 436 indio_dev->num_channels * 2, 437 437 GFP_KERNEL); 438 438 if (st->buffer == NULL) { 439 - dev_err(&indio_dev->dev, "Can't allocate bufffer\n"); 439 + dev_err(&indio_dev->dev, "Can't allocate buffer\n"); 440 440 return -ENOMEM; 441 441 } 442 442
+1 -1
drivers/isdn/hardware/mISDN/mISDNinfineon.c
··· 1092 1092 } 1093 1093 card->ci = get_card_info(ent->driver_data); 1094 1094 if (!card->ci) { 1095 - pr_info("mISDN: do not have informations about adapter at %s\n", 1095 + pr_info("mISDN: do not have information about adapter at %s\n", 1096 1096 pci_name(pdev)); 1097 1097 kfree(card); 1098 1098 pci_disable_device(pdev);
+1 -1
drivers/isdn/mISDN/dsp_cmx.c
··· 295 295 } 296 296 } 297 297 printk(KERN_WARNING 298 - "%s: dsp is not present in its own conf_meber list.\n", 298 + "%s: dsp is not present in its own conf_member list.\n", 299 299 __func__); 300 300 301 301 return -EINVAL;
+2 -2
drivers/isdn/mISDN/dsp_core.c
··· 460 460 } 461 461 if (dsp_debug & DEBUG_DSP_CORE) 462 462 printk(KERN_DEBUG "%s: enable mixing of " 463 - "tx-data with conf mebers\n", __func__); 463 + "tx-data with conf members\n", __func__); 464 464 dsp->tx_mix = 1; 465 465 dsp_cmx_hardware(dsp->conf, dsp); 466 466 dsp_rx_off(dsp); ··· 474 474 } 475 475 if (dsp_debug & DEBUG_DSP_CORE) 476 476 printk(KERN_DEBUG "%s: disable mixing of " 477 - "tx-data with conf mebers\n", __func__); 477 + "tx-data with conf members\n", __func__); 478 478 dsp->tx_mix = 0; 479 479 dsp_cmx_hardware(dsp->conf, dsp); 480 480 dsp_rx_off(dsp);
+1 -1
drivers/media/tuners/msi001.c
··· 408 408 s->mixer_gain->cur.val, s->if_gain->val); 409 409 break; 410 410 default: 411 - dev_dbg(&s->spi->dev, "unkown control %d\n", ctrl->id); 411 + dev_dbg(&s->spi->dev, "unknown control %d\n", ctrl->id); 412 412 ret = -EINVAL; 413 413 } 414 414
+1 -1
drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.c
··· 591 591 mc = kzalloc(mc_num * sizeof(struct bnx2x_mcast_list_elem), 592 592 GFP_KERNEL); 593 593 if (!mc) { 594 - BNX2X_ERR("Cannot Configure mulicasts due to lack of memory\n"); 594 + BNX2X_ERR("Cannot Configure multicasts due to lack of memory\n"); 595 595 return -ENOMEM; 596 596 } 597 597 }
+1 -1
drivers/net/ethernet/qlogic/qlcnic/qlcnic_hw.c
··· 794 794 795 795 if (rv) 796 796 netdev_err(adapter->netdev, 797 - "Failed to set Rx coalescing parametrs\n"); 797 + "Failed to set Rx coalescing parameters\n"); 798 798 799 799 return rv; 800 800 }
+1 -1
drivers/net/wireless/ath/ath10k/mac.c
··· 4342 4342 bw = WMI_PEER_CHWIDTH_80MHZ; 4343 4343 break; 4344 4344 case IEEE80211_STA_RX_BW_160: 4345 - ath10k_warn(ar, "Invalid bandwith %d in rc update for %pM\n", 4345 + ath10k_warn(ar, "Invalid bandwidth %d in rc update for %pM\n", 4346 4346 sta->bandwidth, sta->addr); 4347 4347 bw = WMI_PEER_CHWIDTH_20MHZ; 4348 4348 break;
+1 -1
drivers/net/wireless/rtlwifi/rtl8723be/dm.c
··· 336 336 rtl_dm_dig->min_undec_pwdb_for_dm = 337 337 rtlpriv->dm.entry_min_undec_sm_pwdb; 338 338 RT_TRACE(rtlpriv, COMP_BB_POWERSAVING, DBG_LOUD, 339 - "AP Ext Port or disconnet PWDB = 0x%x\n", 339 + "AP Ext Port or disconnect PWDB = 0x%x\n", 340 340 rtl_dm_dig->min_undec_pwdb_for_dm); 341 341 } 342 342 RT_TRACE(rtlpriv, COMP_DIG, DBG_LOUD, "MinUndecoratedPWDBForDM =%d\n",
+1 -1
drivers/net/wireless/rtlwifi/rtl8821ae/dm.c
··· 899 899 900 900 if (rtlpriv->falsealm_cnt.cnt_all > 10000) { 901 901 RT_TRACE(rtlpriv, COMP_DIG, DBG_LOUD, 902 - "Abnornally false alarm case.\n"); 902 + "Abnormally false alarm case.\n"); 903 903 904 904 if (dm_digtable->large_fa_hit != 3) 905 905 dm_digtable->large_fa_hit++;
+1 -1
drivers/parisc/eisa_enumerator.c
··· 357 357 } 358 358 if (flags & HPEE_FUNCTION_INFO_CFG_FREE_FORM) { 359 359 /* I have no idea how to handle this */ 360 - printk("function %d have free-form confgiuration, skipping ", 360 + printk("function %d have free-form configuration, skipping ", 361 361 num_func); 362 362 pos = p0 + function_len; 363 363 continue;
+1 -1
drivers/scsi/be2iscsi/be_cmds.c
··· 237 237 beiscsi_log(phba, KERN_WARNING, 238 238 BEISCSI_LOG_INIT | BEISCSI_LOG_EH | 239 239 BEISCSI_LOG_CONFIG, 240 - "BC_%d : Insufficent Buffer Error " 240 + "BC_%d : Insufficient Buffer Error " 241 241 "Resp_Len : %d Actual_Resp_Len : %d\n", 242 242 mbx_resp_hdr->response_length, 243 243 mbx_resp_hdr->actual_resp_len);
+1 -1
drivers/scsi/osd/osd_initiator.c
··· 186 186 187 187 if (unlikely(len > sizeof(odi->systemid))) { 188 188 OSD_ERR("OSD Target error: OSD_SYSTEM_ID too long(%d). " 189 - "device idetification might not work\n", len); 189 + "device identification might not work\n", len); 190 190 len = sizeof(odi->systemid); 191 191 } 192 192 odi->systemid_len = len;
+1 -1
drivers/scsi/qla2xxx/qla_nx.c
··· 1274 1274 1275 1275 if (off == ADDR_ERROR) { 1276 1276 ql_log(ql_log_fatal, vha, 0x0116, 1277 - "Unknow addr: 0x%08lx.\n", buf[i].addr); 1277 + "Unknown addr: 0x%08lx.\n", buf[i].addr); 1278 1278 continue; 1279 1279 } 1280 1280
+2 -2
drivers/scsi/qla2xxx/qla_os.c
··· 4174 4174 break; 4175 4175 default: 4176 4176 ql_log(ql_log_warn, base_vha, 0xb05f, 4177 - "Unknow work-code=0x%x.\n", work_code); 4177 + "Unknown work-code=0x%x.\n", work_code); 4178 4178 } 4179 4179 4180 4180 return; ··· 4774 4774 break; 4775 4775 default: 4776 4776 ql_log(ql_log_warn, base_vha, 0xb071, 4777 - "Unknow Device State: %x.\n", dev_state); 4777 + "Unknown Device State: %x.\n", dev_state); 4778 4778 qla83xx_idc_unlock(base_vha, 0); 4779 4779 qla8xxx_dev_failed_handler(base_vha); 4780 4780 rval = QLA_FUNCTION_FAILED;
+2 -2
net/sunrpc/xprtrdma/verbs.c
··· 1005 1005 int i, rc; 1006 1006 1007 1007 i = (buf->rb_max_requests + 1) * RPCRDMA_MAX_SEGS; 1008 - dprintk("RPC: %s: initalizing %d FMRs\n", __func__, i); 1008 + dprintk("RPC: %s: initializing %d FMRs\n", __func__, i); 1009 1009 1010 1010 while (i--) { 1011 1011 r = kzalloc(sizeof(*r), GFP_KERNEL); ··· 1038 1038 int i, rc; 1039 1039 1040 1040 i = (buf->rb_max_requests + 1) * RPCRDMA_MAX_SEGS; 1041 - dprintk("RPC: %s: initalizing %d FRMRs\n", __func__, i); 1041 + dprintk("RPC: %s: initializing %d FRMRs\n", __func__, i); 1042 1042 1043 1043 while (i--) { 1044 1044 r = kzalloc(sizeof(*r), GFP_KERNEL);
+1 -1
tools/perf/util/probe-finder.c
··· 456 456 return -EINVAL; 457 457 } 458 458 if (field->name[0] == '[') { 459 - pr_err("Semantic error: %s is not a pointor" 459 + pr_err("Semantic error: %s is not a pointer" 460 460 " nor array.\n", varname); 461 461 return -EINVAL; 462 462 }