]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
treewide: Fix typo in printk
authorMasanari Iida <standby24x7@gmail.com>
Wed, 6 Aug 2014 13:31:28 +0000 (22:31 +0900)
committerJiri Kosina <jkosina@suse.cz>
Tue, 26 Aug 2014 07:35:54 +0000 (09:35 +0200)
This patch fix spelling typo in printk within vairous
part of the code.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
14 files changed:
arch/blackfin/mach-common/ints-priority.c
drivers/gpu/drm/i915/intel_bios.c
drivers/i2c/busses/i2c-s3c2410.c
drivers/infiniband/hw/usnic/usnic_ib_qp_grp.c
drivers/media/usb/gspca/stv06xx/stv06xx_vv6410.c
drivers/net/bonding/bond_sysfs_slave.c
drivers/net/ethernet/qlogic/netxen/netxen_nic_hw.c
drivers/net/ethernet/qlogic/qlcnic/qlcnic_hw.c
drivers/net/wireless/libertas_tf/main.c
drivers/scsi/aic7xxx/Kconfig.aic79xx
drivers/scsi/nsp32.c
drivers/scsi/pcmcia/nsp_cs.c
drivers/scsi/qla2xxx/qla_nx2.c
net/mac802154/wpan.c

index 1f94784eab6d79b7f63673e20e2039fb41a07edb..694619365265a7792bb457c4fe48ebd484e53bca 100644 (file)
@@ -455,7 +455,7 @@ void handle_sec_sci_fault(uint32_t gstat)
                        printk(KERN_DEBUG "sec ack err\n");
                        break;
                default:
-                       printk(KERN_DEBUG "sec sci unknow err\n");
+                       printk(KERN_DEBUG "sec sci unknown err\n");
                }
        }
 
index 827498e081df545df16ecbe308f93210ae05582c..21b347efcf1e3ef26214bb10632c810a07fd46d3 100644 (file)
@@ -945,7 +945,7 @@ static void parse_ddi_port(struct drm_i915_private *dev_priv, enum port port,
                DRM_DEBUG_KMS("Analog port %c is also DP or TMDS compatible\n",
                              port_name(port));
        if (is_dvi && (port == PORT_A || port == PORT_E))
-               DRM_DEBUG_KMS("Port %c is TMDS compabile\n", port_name(port));
+               DRM_DEBUG_KMS("Port %c is TMDS compatible\n", port_name(port));
        if (!is_dvi && !is_dp && !is_crt)
                DRM_DEBUG_KMS("Port %c is not DP/TMDS/CRT compatible\n",
                              port_name(port));
index e828a1dba0e5a5d4cafdcfaf4c1188df89f04b1a..24e2370d52a13772adf6245163ca9ac6722ef748 100644 (file)
@@ -244,7 +244,7 @@ static bool is_ack(struct s3c24xx_i2c *i2c)
                }
                usleep_range(1000, 2000);
        }
-       dev_err(i2c->dev, "ack was not recieved\n");
+       dev_err(i2c->dev, "ack was not received\n");
        return false;
 }
 
index f8dfd76be89fbfdcb94559ed58cda9a3d8c591b2..db3588df3546b3ceaf8dce0ae8e175e6326265a3 100644 (file)
@@ -511,7 +511,7 @@ int usnic_ib_qp_grp_modify(struct usnic_ib_qp_grp *qp_grp,
                usnic_ib_qp_grp_state_to_string(old_state),
                usnic_ib_qp_grp_state_to_string(new_state));
        } else {
-               usnic_err("Failed to transistion %u from %s to %s",
+               usnic_err("Failed to transition %u from %s to %s",
                qp_grp->grp_id,
                usnic_ib_qp_grp_state_to_string(old_state),
                usnic_ib_qp_grp_state_to_string(new_state));
index e60cbb3aa60950675add7e332fe86cf53a847d39..f86cec091bf40f0e5700403152221a945d955d14 100644 (file)
@@ -259,7 +259,7 @@ static int vv6410_set_exposure(struct gspca_dev *gspca_dev, __s32 val)
        fine = val % VV6410_CIF_LINELENGTH;
        coarse = min(512, val / VV6410_CIF_LINELENGTH);
 
-       PDEBUG(D_CONF, "Set coarse exposure to %d, fine expsure to %d",
+       PDEBUG(D_CONF, "Set coarse exposure to %d, fine exposure to %d",
               coarse, fine);
 
        err = stv06xx_write_sensor(sd, VV6410_FINEH, fine >> 8);
index 5cd532ca1cfe60a3c9cc7db4833db50f97442a6c..b01b0ce4d1bef13d48c6f41c4e2e6a8f5d50e8d4 100644 (file)
@@ -36,7 +36,7 @@ static ssize_t state_show(struct slave *slave, char *buf)
        case BOND_STATE_BACKUP:
                return sprintf(buf, "backup\n");
        default:
-               return sprintf(buf, "UNKONWN\n");
+               return sprintf(buf, "UNKNOWN\n");
        }
 }
 static SLAVE_ATTR_RO(state);
index db4280ce9c09a9018401bd05b9193d5e7efee392..716fc37ada5a961677b577b0c693427ff8b32ee6 100644 (file)
@@ -922,7 +922,7 @@ int netxen_config_ipaddr(struct netxen_adapter *adapter, __be32 ip, int cmd)
 
        rv = netxen_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
        if (rv != 0) {
-               printk(KERN_ERR "%s: could not notify %s IP 0x%x reuqest\n",
+               printk(KERN_ERR "%s: could not notify %s IP 0x%x request\n",
                                adapter->netdev->name,
                                (cmd == NX_IP_UP) ? "Add" : "Remove", ip);
        }
index 851cb4a80d50a6d4b2733ac2693fd799cca37885..03cd4c3d7835a855fca6796a252a6902031280bb 100644 (file)
@@ -941,7 +941,7 @@ void qlcnic_82xx_config_ipaddr(struct qlcnic_adapter *adapter,
        rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
        if (rv != 0)
                dev_err(&adapter->netdev->dev,
-                               "could not notify %s IP 0x%x reuqest\n",
+                               "could not notify %s IP 0x%x request\n",
                                (cmd == QLCNIC_IP_UP) ? "Add" : "Remove", ip);
 }
 
index 088de9d25c39ecd4eb3dabc9177c72c3cd9619a4..25c5acc78bd141c218499eae06d1ed1c33f70e83 100644 (file)
@@ -332,7 +332,7 @@ static int lbtf_op_start(struct ieee80211_hw *hw)
 
 err_prog_firmware:
        priv->hw_reset_device(card);
-       lbtf_deb_leave_args(LBTF_DEB_MACOPS, "error programing fw; ret=%d", ret);
+       lbtf_deb_leave_args(LBTF_DEB_MACOPS, "error programming fw; ret=%d", ret);
        return ret;
 }
 
index 6739069477dec7127191839cb1a90a604fef39cf..3b3d599103f86a619ef46b79f03ec9d01ba96eec 100644 (file)
@@ -70,7 +70,7 @@ config AIC79XX_DEBUG_MASK
        default "0"
        help
        Bit mask of debug options that is only valid if the
-       CONFIG_AIC79XX_DEBUG_ENBLE option is enabled.  The bits in this mask
+       CONFIG_AIC79XX_DEBUG_ENABLE option is enabled.  The bits in this mask
        are defined in the drivers/scsi/aic7xxx/aic79xx.h - search for the
        variable ahd_debug in that file to find them.
 
index 50b086aef17836b75c82d428b990e938b3f23606..53284eb23a15e4d5d6e81c7bf5f3f7cf63934acf 100644 (file)
@@ -930,7 +930,7 @@ static int nsp32_queuecommand_lck(struct scsi_cmnd *SCpnt, void (*done)(struct s
 
        /* check target ID is not same as this initiator ID */
        if (scmd_id(SCpnt) == SCpnt->device->host->this_id) {
-               nsp32_dbg(NSP32_DEBUG_QUEUECOMMAND, "terget==host???");
+               nsp32_dbg(NSP32_DEBUG_QUEUECOMMAND, "target==host???");
                SCpnt->result = DID_BAD_TARGET << 16;
                done(SCpnt);
                return 0;
index 340ceff0382370a27880e7f376bd9357d70896ab..34aad32829f5a2ab01764ac1cd97e173a0a839b3 100644 (file)
@@ -533,7 +533,7 @@ static int nsp_negate_signal(struct scsi_cmnd *SCpnt, unsigned char mask,
        } while ((--time_out != 0) && (reg & mask) != 0);
 
        if (time_out == 0) {
-               nsp_msg(KERN_DEBUG, " %s signal off timeut", str);
+               nsp_msg(KERN_DEBUG, " %s signal off timeout", str);
        }
 
        return 0;
index da9e3902f2190b6a61d7f06200dbe5806f15dced..24a852828b5d726cac2c8d1378b0d664dd8b814a 100644 (file)
@@ -399,7 +399,7 @@ qla8044_idc_lock(struct qla_hw_data *ha)
                                 */
                                 ql_dbg(ql_dbg_p3p, vha, 0xb08a,
                                     "%s: IDC lock Recovery by %d "
-                                    "failed, Retrying timout\n", __func__,
+                                    "failed, Retrying timeout\n", __func__,
                                     ha->portnum);
                                 timeout = 0;
                        }
index 3c3069fd69718277fc719e82d7bf2c51bb9747db..aa25269d6902e2b446e85fb907b1699e31322932 100644 (file)
@@ -90,7 +90,7 @@ mac802154_wpan_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
        }
        case SIOCSIFADDR:
                dev_warn(&dev->dev,
-                        "Using DEBUGing ioctl SIOCSIFADDR isn't recommened!\n");
+                        "Using DEBUGing ioctl SIOCSIFADDR isn't recommended!\n");
                if (sa->family != AF_IEEE802154 ||
                    sa->addr.addr_type != IEEE802154_ADDR_SHORT ||
                    sa->addr.pan_id == IEEE802154_PANID_BROADCAST ||