aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2013-03-30 12:23:50 -0400
committerJiri Kosina <jkosina@suse.cz>2013-03-31 11:50:31 -0400
commit1051e9b33bbf550be52bdd674b519f3dc99f0dd9 (patch)
treef1e380c886702c30c89d7cb9e3956fee5184d076
parent6200632427f0f96836491a3b94f9412eceff2c59 (diff)
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>
-rw-r--r--drivers/media/platform/s5p-mfc/s5p_mfc_opr_v6.c2
-rw-r--r--drivers/net/ethernet/atheros/atl1c/atl1c_hw.c2
-rw-r--r--drivers/scsi/lpfc/lpfc_bsg.c2
-rw-r--r--drivers/scsi/osd/osd_initiator.c2
-rw-r--r--drivers/video/exynos/exynos_dp_core.c4
-rw-r--r--tools/power/cpupower/debug/i386/intel_gsic.c2
6 files changed, 7 insertions, 7 deletions
diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc_opr_v6.c b/drivers/media/platform/s5p-mfc/s5p_mfc_opr_v6.c
index beb6dbacebd9..98a9c093a6b9 100644
--- a/drivers/media/platform/s5p-mfc/s5p_mfc_opr_v6.c
+++ b/drivers/media/platform/s5p-mfc/s5p_mfc_opr_v6.c
@@ -1312,7 +1312,7 @@ static inline int s5p_mfc_get_new_ctx(struct s5p_mfc_dev *dev)
1312 int cnt; 1312 int cnt;
1313 1313
1314 spin_lock_irqsave(&dev->condlock, flags); 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 dev->ctx_work_bits); 1316 dev->ctx_work_bits);
1317 new_ctx = (dev->curr_ctx + 1) % MFC_NUM_CONTEXTS; 1317 new_ctx = (dev->curr_ctx + 1) % MFC_NUM_CONTEXTS;
1318 cnt = 0; 1318 cnt = 0;
diff --git a/drivers/net/ethernet/atheros/atl1c/atl1c_hw.c b/drivers/net/ethernet/atheros/atl1c/atl1c_hw.c
index 21e261ffbe10..3ef7092e3f1c 100644
--- a/drivers/net/ethernet/atheros/atl1c/atl1c_hw.c
+++ b/drivers/net/ethernet/atheros/atl1c/atl1c_hw.c
@@ -810,7 +810,7 @@ int atl1c_power_saving(struct atl1c_hw *hw, u32 wufc)
810 if (wufc & AT_WUFC_LNKC) { 810 if (wufc & AT_WUFC_LNKC) {
811 wol_ctrl |= WOL_LINK_CHG_EN | WOL_LINK_CHG_PME_EN; 811 wol_ctrl |= WOL_LINK_CHG_EN | WOL_LINK_CHG_PME_EN;
812 if (atl1c_write_phy_reg(hw, MII_IER, IER_LINK_UP) != 0) { 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 atl1c_driver_name); 814 atl1c_driver_name);
815 } 815 }
816 } 816 }
diff --git a/drivers/scsi/lpfc/lpfc_bsg.c b/drivers/scsi/lpfc/lpfc_bsg.c
index 32d5683e6181..f5d106456f1d 100644
--- a/drivers/scsi/lpfc/lpfc_bsg.c
+++ b/drivers/scsi/lpfc/lpfc_bsg.c
@@ -4741,7 +4741,7 @@ lpfc_bsg_mbox_cmd(struct fc_bsg_job *job)
4741 if (job->request_len < 4741 if (job->request_len <
4742 sizeof(struct fc_bsg_request) + sizeof(struct dfc_mbox_req)) { 4742 sizeof(struct fc_bsg_request) + sizeof(struct dfc_mbox_req)) {
4743 lpfc_printf_log(phba, KERN_INFO, LOG_LIBDFC, 4743 lpfc_printf_log(phba, KERN_INFO, LOG_LIBDFC,
4744 "2737 Mix-and-match backward compability " 4744 "2737 Mix-and-match backward compatibility "
4745 "between MBOX_REQ old size:%d and " 4745 "between MBOX_REQ old size:%d and "
4746 "new request size:%d\n", 4746 "new request size:%d\n",
4747 (int)(job->request_len - 4747 (int)(job->request_len -
diff --git a/drivers/scsi/osd/osd_initiator.c b/drivers/scsi/osd/osd_initiator.c
index d8293f25ca33..aa66361ed44b 100644
--- a/drivers/scsi/osd/osd_initiator.c
+++ b/drivers/scsi/osd/osd_initiator.c
@@ -1049,7 +1049,7 @@ static struct bio *_create_sg_bios(struct osd_request *or,
1049 1049
1050 bio = bio_kmalloc(GFP_KERNEL, numentries); 1050 bio = bio_kmalloc(GFP_KERNEL, numentries);
1051 if (unlikely(!bio)) { 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 return ERR_PTR(-ENOMEM); 1053 return ERR_PTR(-ENOMEM);
1054 } 1054 }
1055 1055
diff --git a/drivers/video/exynos/exynos_dp_core.c b/drivers/video/exynos/exynos_dp_core.c
index de9d4da0e3da..12bbede3b091 100644
--- a/drivers/video/exynos/exynos_dp_core.c
+++ b/drivers/video/exynos/exynos_dp_core.c
@@ -976,14 +976,14 @@ static int exynos_dp_dt_parse_phydata(struct exynos_dp_device *dp)
976 } 976 }
977 977
978 if (of_property_read_u32(dp_phy_node, "reg", &phy_base)) { 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 ret = -EINVAL; 980 ret = -EINVAL;
981 goto err; 981 goto err;
982 } 982 }
983 983
984 if (of_property_read_u32(dp_phy_node, "samsung,enable-mask", 984 if (of_property_read_u32(dp_phy_node, "samsung,enable-mask",
985 &dp->enable_mask)) { 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 ret = -EINVAL; 987 ret = -EINVAL;
988 goto err; 988 goto err;
989 } 989 }
diff --git a/tools/power/cpupower/debug/i386/intel_gsic.c b/tools/power/cpupower/debug/i386/intel_gsic.c
index 53f5293c9c9a..d032c826d42e 100644
--- a/tools/power/cpupower/debug/i386/intel_gsic.c
+++ b/tools/power/cpupower/debug/i386/intel_gsic.c
@@ -66,7 +66,7 @@ int main (void)
66 printf("ecx = 0x%.8x\n", r.ecx); 66 printf("ecx = 0x%.8x\n", r.ecx);
67 printf("edx = 0x%.8x\n", r.edx); 67 printf("edx = 0x%.8x\n", r.edx);
68 printf("Note also that some BIOS do not support the initial " 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 "work.\nFor this, you need to pass some arguments to " 70 "work.\nFor this, you need to pass some arguments to "
71 "the speedstep-smi driver:\n"); 71 "the speedstep-smi driver:\n");
72 printf("\tsmi_cmd=0x?? smi_port=0x?? smi_sig=1\n"); 72 printf("\tsmi_cmd=0x?? smi_port=0x?? smi_sig=1\n");