Commit 8a168ca7074b463d0e19a9e9c15946db1afbddc4

Authored by Masanari Iida
Committed by Jiri Kosina
1 parent 2c016dc2cb

treewide: Fix typo in various drivers

Correct spelling typo in printk within various drivers.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

Showing 14 changed files with 14 additions and 14 deletions Side-by-side Diff

drivers/bluetooth/ath3k.c
... ... @@ -338,7 +338,7 @@
338 338  
339 339 ret = ath3k_get_state(udev, &fw_state);
340 340 if (ret < 0) {
341   - BT_ERR("Can't get state to change to load configration err");
  341 + BT_ERR("Can't get state to change to load configuration err");
342 342 return -EBUSY;
343 343 }
344 344  
drivers/devfreq/exynos4_bus.c
... ... @@ -636,7 +636,7 @@
636 636 if (old_freq == freq)
637 637 return 0;
638 638  
639   - dev_dbg(dev, "targetting %lukHz %luuV\n", freq, opp_get_voltage(opp));
  639 + dev_dbg(dev, "targeting %lukHz %luuV\n", freq, opp_get_voltage(opp));
640 640  
641 641 mutex_lock(&data->lock);
642 642  
drivers/firewire/ohci.c
... ... @@ -329,7 +329,7 @@
329 329 MODULE_PARM_DESC(quirks, "Chip quirks (default = 0"
330 330 ", nonatomic cycle timer = " __stringify(QUIRK_CYCLE_TIMER)
331 331 ", reset packet generation = " __stringify(QUIRK_RESET_PACKET)
332   - ", AR/selfID endianess = " __stringify(QUIRK_BE_HEADERS)
  332 + ", AR/selfID endianness = " __stringify(QUIRK_BE_HEADERS)
333 333 ", no 1394a enhancements = " __stringify(QUIRK_NO_1394A)
334 334 ", disable MSI = " __stringify(QUIRK_NO_MSI)
335 335 ", TI SLLZ059 erratum = " __stringify(QUIRK_TI_SLLZ059)
drivers/gpu/drm/i915/i915_debugfs.c
... ... @@ -1449,7 +1449,7 @@
1449 1449 case I915_BIT_6_SWIZZLE_9_10_17:
1450 1450 return "bit9/bit10/bit17";
1451 1451 case I915_BIT_6_SWIZZLE_UNKNOWN:
1452   - return "unkown";
  1452 + return "unknown";
1453 1453 }
1454 1454  
1455 1455 return "bug";
drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c
... ... @@ -982,7 +982,7 @@
982 982 }
983 983 if (!npar_opt_timeo) {
984 984 dev_err(&adapter->pdev->dev,
985   - "Waiting for NPAR state to opertional timeout\n");
  985 + "Waiting for NPAR state to operational timeout\n");
986 986 return -EIO;
987 987 }
988 988 return 0;
drivers/rpmsg/virtio_rpmsg_bus.c
... ... @@ -841,7 +841,7 @@
841 841 /* farewell, ept, we don't need you anymore */
842 842 kref_put(&ept->refcount, __ept_release);
843 843 } else
844   - dev_warn(dev, "msg received with no recepient\n");
  844 + dev_warn(dev, "msg received with no recipient\n");
845 845  
846 846 /* publish the real size of the buffer */
847 847 sg_init_one(&sg, msg, RPMSG_BUF_SIZE);
drivers/target/sbp/sbp_target.c
... ... @@ -1718,7 +1718,7 @@
1718 1718  
1719 1719 nacl = kzalloc(sizeof(struct sbp_nacl), GFP_KERNEL);
1720 1720 if (!nacl) {
1721   - pr_err("Unable to alocate struct sbp_nacl\n");
  1721 + pr_err("Unable to allocate struct sbp_nacl\n");
1722 1722 return NULL;
1723 1723 }
1724 1724  
... ... @@ -76,7 +76,7 @@
76 76 }
77 77 rc = crypto_shash_update(&sdescmd5->shash, link_str, link_len);
78 78 if (rc) {
79   - cERROR(1, "%s: Could not update iwth link_str", __func__);
  79 + cERROR(1, "%s: Could not update with link_str", __func__);
80 80 goto symlink_hash_err;
81 81 }
82 82 rc = crypto_shash_final(&sdescmd5->shash, md5_hash);
... ... @@ -147,7 +147,7 @@
147 147 /*if (le32_to_cpu(fnode->acl_size_l) || le16_to_cpu(fnode->acl_size_s)) {
148 148 Some unknown structures like ACL may be in fnode,
149 149 we'd better not overwrite them
150   - hpfs_error(i->i_sb, "fnode %08x has some unknown HPFS386 stuctures", i->i_ino);
  150 + hpfs_error(i->i_sb, "fnode %08x has some unknown HPFS386 structures", i->i_ino);
151 151 } else*/ if (hpfs_sb(i->i_sb)->sb_eas >= 2) {
152 152 __le32 ea;
153 153 if (!uid_eq(i->i_uid, hpfs_sb(i->i_sb)->sb_uid) || hpfs_inode->i_ea_uid) {
fs/ocfs2/cluster/tcp.c
... ... @@ -870,7 +870,7 @@
870 870 /* we've had some trouble with handlers seemingly vanishing. */
871 871 mlog_bug_on_msg(o2net_handler_tree_lookup(msg_type, key, &p,
872 872 &parent) == NULL,
873   - "couldn't find handler we *just* registerd "
  873 + "couldn't find handler we *just* registered "
874 874 "for type %u key %08x\n", msg_type, key);
875 875 }
876 876 write_unlock(&o2net_handler_lock);
... ... @@ -285,7 +285,7 @@
285 285 if (fs32_to_cpu(sbi, sb->sb_magic) == QNX6_SUPER_MAGIC) {
286 286 /* we got a big endian fs */
287 287 QNX6DEBUG((KERN_INFO "qnx6: fs got different"
288   - " endianess.\n"));
  288 + " endianness.\n"));
289 289 return bh;
290 290 } else
291 291 sbi->s_bytesex = BYTESEX_LE;
include/linux/dma-buf.h
... ... @@ -53,7 +53,7 @@
53 53 * @begin_cpu_access: [optional] called before cpu access to invalidate cpu
54 54 * caches and allocate backing storage (if not yet done)
55 55 * respectively pin the objet into memory.
56   - * @end_cpu_access: [optional] called after cpu access to flush cashes.
  56 + * @end_cpu_access: [optional] called after cpu access to flush caches.
57 57 * @kmap_atomic: maps a page from the buffer into kernel address
58 58 * space, users may not block until the subsequent unmap call.
59 59 * This callback must not sleep.
... ... @@ -402,7 +402,7 @@
402 402  
403 403 phyinfo = cfcnfg_get_phyinfo_rcu(cnfg, phyid);
404 404 if (phyinfo == NULL) {
405   - pr_err("ERROR: Link Layer Device dissapeared"
  405 + pr_err("ERROR: Link Layer Device disappeared"
406 406 "while connecting\n");
407 407 goto unlock;
408 408 }
scripts/basic/fixdep.c
... ... @@ -409,7 +409,7 @@
409 409 int *p = (int *)test;
410 410  
411 411 if (*p != INT_CONF) {
412   - fprintf(stderr, "fixdep: sizeof(int) != 4 or wrong endianess? %#x\n",
  412 + fprintf(stderr, "fixdep: sizeof(int) != 4 or wrong endianness? %#x\n",
413 413 *p);
414 414 exit(2);
415 415 }