Skip to content

Commit 8a168ca

Browse files
standby24x7Jiri Kosina
authored andcommitted
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>
1 parent 2c016dc commit 8a168ca

14 files changed

Lines changed: 14 additions & 14 deletions

File tree

drivers/bluetooth/ath3k.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ static int ath3k_load_syscfg(struct usb_device *udev)
338338

339339
ret = ath3k_get_state(udev, &fw_state);
340340
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");
342342
return -EBUSY;
343343
}
344344

drivers/devfreq/exynos4_bus.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ static int exynos4_bus_target(struct device *dev, unsigned long *_freq,
636636
if (old_freq == freq)
637637
return 0;
638638

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));
640640

641641
mutex_lock(&data->lock);
642642

drivers/firewire/ohci.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ module_param_named(quirks, param_quirks, int, 0644);
329329
MODULE_PARM_DESC(quirks, "Chip quirks (default = 0"
330330
", nonatomic cycle timer = " __stringify(QUIRK_CYCLE_TIMER)
331331
", reset packet generation = " __stringify(QUIRK_RESET_PACKET)
332-
", AR/selfID endianess = " __stringify(QUIRK_BE_HEADERS)
332+
", AR/selfID endianness = " __stringify(QUIRK_BE_HEADERS)
333333
", no 1394a enhancements = " __stringify(QUIRK_NO_1394A)
334334
", disable MSI = " __stringify(QUIRK_NO_MSI)
335335
", TI SLLZ059 erratum = " __stringify(QUIRK_TI_SLLZ059)

drivers/gpu/drm/i915/i915_debugfs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1449,7 +1449,7 @@ static const char *swizzle_string(unsigned swizzle)
14491449
case I915_BIT_6_SWIZZLE_9_10_17:
14501450
return "bit9/bit10/bit17";
14511451
case I915_BIT_6_SWIZZLE_UNKNOWN:
1452-
return "unkown";
1452+
return "unknown";
14531453
}
14541454

14551455
return "bug";

drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -982,7 +982,7 @@ static int qlcnic_check_npar_opertional(struct qlcnic_adapter *adapter)
982982
}
983983
if (!npar_opt_timeo) {
984984
dev_err(&adapter->pdev->dev,
985-
"Waiting for NPAR state to opertional timeout\n");
985+
"Waiting for NPAR state to operational timeout\n");
986986
return -EIO;
987987
}
988988
return 0;

drivers/rpmsg/virtio_rpmsg_bus.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@ static void rpmsg_recv_done(struct virtqueue *rvq)
841841
/* farewell, ept, we don't need you anymore */
842842
kref_put(&ept->refcount, __ept_release);
843843
} else
844-
dev_warn(dev, "msg received with no recepient\n");
844+
dev_warn(dev, "msg received with no recipient\n");
845845

846846
/* publish the real size of the buffer */
847847
sg_init_one(&sg, msg, RPMSG_BUF_SIZE);

drivers/target/sbp/sbp_target.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1718,7 +1718,7 @@ static struct se_node_acl *sbp_alloc_fabric_acl(struct se_portal_group *se_tpg)
17181718

17191719
nacl = kzalloc(sizeof(struct sbp_nacl), GFP_KERNEL);
17201720
if (!nacl) {
1721-
pr_err("Unable to alocate struct sbp_nacl\n");
1721+
pr_err("Unable to allocate struct sbp_nacl\n");
17221722
return NULL;
17231723
}
17241724

fs/cifs/link.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ symlink_hash(unsigned int link_len, const char *link_str, u8 *md5_hash)
7676
}
7777
rc = crypto_shash_update(&sdescmd5->shash, link_str, link_len);
7878
if (rc) {
79-
cERROR(1, "%s: Could not update iwth link_str", __func__);
79+
cERROR(1, "%s: Could not update with link_str", __func__);
8080
goto symlink_hash_err;
8181
}
8282
rc = crypto_shash_final(&sdescmd5->shash, md5_hash);

fs/hpfs/inode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ static void hpfs_write_inode_ea(struct inode *i, struct fnode *fnode)
147147
/*if (le32_to_cpu(fnode->acl_size_l) || le16_to_cpu(fnode->acl_size_s)) {
148148
Some unknown structures like ACL may be in fnode,
149149
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);
151151
} else*/ if (hpfs_sb(i->i_sb)->sb_eas >= 2) {
152152
__le32 ea;
153153
if (!uid_eq(i->i_uid, hpfs_sb(i->i_sb)->sb_uid) || hpfs_inode->i_ea_uid) {

fs/ocfs2/cluster/tcp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ int o2net_register_handler(u32 msg_type, u32 key, u32 max_len,
870870
/* we've had some trouble with handlers seemingly vanishing. */
871871
mlog_bug_on_msg(o2net_handler_tree_lookup(msg_type, key, &p,
872872
&parent) == NULL,
873-
"couldn't find handler we *just* registerd "
873+
"couldn't find handler we *just* registered "
874874
"for type %u key %08x\n", msg_type, key);
875875
}
876876
write_unlock(&o2net_handler_lock);

0 commit comments

Comments
 (0)