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

treewide: Fix typos in kernel messages

Correct spelling typos in various part of printk.

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
1051e9b3 62006324

+7 -7
+1 -1
drivers/media/platform/s5p-mfc/s5p_mfc_opr_v6.c
··· 1312 1312 int cnt; 1313 1313 1314 1314 spin_lock_irqsave(&dev->condlock, flags); 1315 - mfc_debug(2, "Previos context: %d (bits %08lx)\n", dev->curr_ctx, 1315 + mfc_debug(2, "Previous context: %d (bits %08lx)\n", dev->curr_ctx, 1316 1316 dev->ctx_work_bits); 1317 1317 new_ctx = (dev->curr_ctx + 1) % MFC_NUM_CONTEXTS; 1318 1318 cnt = 0;
+1 -1
drivers/net/ethernet/atheros/atl1c/atl1c_hw.c
··· 810 810 if (wufc & AT_WUFC_LNKC) { 811 811 wol_ctrl |= WOL_LINK_CHG_EN | WOL_LINK_CHG_PME_EN; 812 812 if (atl1c_write_phy_reg(hw, MII_IER, IER_LINK_UP) != 0) { 813 - dev_dbg(&pdev->dev, "%s: write phy MII_IER faild.\n", 813 + dev_dbg(&pdev->dev, "%s: write phy MII_IER failed.\n", 814 814 atl1c_driver_name); 815 815 } 816 816 }
+1 -1
drivers/scsi/lpfc/lpfc_bsg.c
··· 4741 4741 if (job->request_len < 4742 4742 sizeof(struct fc_bsg_request) + sizeof(struct dfc_mbox_req)) { 4743 4743 lpfc_printf_log(phba, KERN_INFO, LOG_LIBDFC, 4744 - "2737 Mix-and-match backward compability " 4744 + "2737 Mix-and-match backward compatibility " 4745 4745 "between MBOX_REQ old size:%d and " 4746 4746 "new request size:%d\n", 4747 4747 (int)(job->request_len -
+1 -1
drivers/scsi/osd/osd_initiator.c
··· 1049 1049 1050 1050 bio = bio_kmalloc(GFP_KERNEL, numentries); 1051 1051 if (unlikely(!bio)) { 1052 - OSD_DEBUG("Faild to allocate BIO size=%u\n", numentries); 1052 + OSD_DEBUG("Failed to allocate BIO size=%u\n", numentries); 1053 1053 return ERR_PTR(-ENOMEM); 1054 1054 } 1055 1055
+2 -2
drivers/video/exynos/exynos_dp_core.c
··· 976 976 } 977 977 978 978 if (of_property_read_u32(dp_phy_node, "reg", &phy_base)) { 979 - dev_err(dp->dev, "faild to get reg for dptx-phy\n"); 979 + dev_err(dp->dev, "failed to get reg for dptx-phy\n"); 980 980 ret = -EINVAL; 981 981 goto err; 982 982 } 983 983 984 984 if (of_property_read_u32(dp_phy_node, "samsung,enable-mask", 985 985 &dp->enable_mask)) { 986 - dev_err(dp->dev, "faild to get enable-mask for dptx-phy\n"); 986 + dev_err(dp->dev, "failed to get enable-mask for dptx-phy\n"); 987 987 ret = -EINVAL; 988 988 goto err; 989 989 }
+1 -1
tools/power/cpupower/debug/i386/intel_gsic.c
··· 66 66 printf("ecx = 0x%.8x\n", r.ecx); 67 67 printf("edx = 0x%.8x\n", r.edx); 68 68 printf("Note also that some BIOS do not support the initial " 69 - "GSIC call, but the newer\nspeeedstep-smi driver may " 69 + "GSIC call, but the newer\nspeedstep-smi driver may " 70 70 "work.\nFor this, you need to pass some arguments to " 71 71 "the speedstep-smi driver:\n"); 72 72 printf("\tsmi_cmd=0x?? smi_port=0x?? smi_sig=1\n");