diff options
author | Masanari Iida <standby24x7@gmail.com> | 2012-12-28 12:00:09 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2013-01-09 05:43:32 -0500 |
commit | 8a168ca7074b463d0e19a9e9c15946db1afbddc4 (patch) | |
tree | 3b3276410acd699b396cd7a8907f217bcc68efff /drivers | |
parent | 2c016dc2cbd160acf099bee8e4d5c056a8b691b1 (diff) |
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/bluetooth/ath3k.c | 2 | ||||
-rw-r--r-- | drivers/devfreq/exynos4_bus.c | 2 | ||||
-rw-r--r-- | drivers/firewire/ohci.c | 2 | ||||
-rw-r--r-- | drivers/gpu/drm/i915/i915_debugfs.c | 2 | ||||
-rw-r--r-- | drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c | 2 | ||||
-rw-r--r-- | drivers/rpmsg/virtio_rpmsg_bus.c | 2 | ||||
-rw-r--r-- | drivers/target/sbp/sbp_target.c | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/drivers/bluetooth/ath3k.c b/drivers/bluetooth/ath3k.c index fc2de5528dcc..9cd3cb8f888a 100644 --- a/drivers/bluetooth/ath3k.c +++ b/drivers/bluetooth/ath3k.c | |||
@@ -338,7 +338,7 @@ static int ath3k_load_syscfg(struct usb_device *udev) | |||
338 | 338 | ||
339 | ret = ath3k_get_state(udev, &fw_state); | 339 | ret = ath3k_get_state(udev, &fw_state); |
340 | if (ret < 0) { | 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 | return -EBUSY; | 342 | return -EBUSY; |
343 | } | 343 | } |
344 | 344 | ||
diff --git a/drivers/devfreq/exynos4_bus.c b/drivers/devfreq/exynos4_bus.c index 88ddc77a9bb1..e1ac076c2917 100644 --- a/drivers/devfreq/exynos4_bus.c +++ b/drivers/devfreq/exynos4_bus.c | |||
@@ -636,7 +636,7 @@ static int exynos4_bus_target(struct device *dev, unsigned long *_freq, | |||
636 | if (old_freq == freq) | 636 | if (old_freq == freq) |
637 | return 0; | 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 | mutex_lock(&data->lock); | 641 | mutex_lock(&data->lock); |
642 | 642 | ||
diff --git a/drivers/firewire/ohci.c b/drivers/firewire/ohci.c index 961e4398664b..638eea51376b 100644 --- a/drivers/firewire/ohci.c +++ b/drivers/firewire/ohci.c | |||
@@ -329,7 +329,7 @@ module_param_named(quirks, param_quirks, int, 0644); | |||
329 | MODULE_PARM_DESC(quirks, "Chip quirks (default = 0" | 329 | MODULE_PARM_DESC(quirks, "Chip quirks (default = 0" |
330 | ", nonatomic cycle timer = " __stringify(QUIRK_CYCLE_TIMER) | 330 | ", nonatomic cycle timer = " __stringify(QUIRK_CYCLE_TIMER) |
331 | ", reset packet generation = " __stringify(QUIRK_RESET_PACKET) | 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 | ", no 1394a enhancements = " __stringify(QUIRK_NO_1394A) | 333 | ", no 1394a enhancements = " __stringify(QUIRK_NO_1394A) |
334 | ", disable MSI = " __stringify(QUIRK_NO_MSI) | 334 | ", disable MSI = " __stringify(QUIRK_NO_MSI) |
335 | ", TI SLLZ059 erratum = " __stringify(QUIRK_TI_SLLZ059) | 335 | ", TI SLLZ059 erratum = " __stringify(QUIRK_TI_SLLZ059) |
diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index dde8b505bf7f..6b39e4861133 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c | |||
@@ -1449,7 +1449,7 @@ static const char *swizzle_string(unsigned swizzle) | |||
1449 | case I915_BIT_6_SWIZZLE_9_10_17: | 1449 | case I915_BIT_6_SWIZZLE_9_10_17: |
1450 | return "bit9/bit10/bit17"; | 1450 | return "bit9/bit10/bit17"; |
1451 | case I915_BIT_6_SWIZZLE_UNKNOWN: | 1451 | case I915_BIT_6_SWIZZLE_UNKNOWN: |
1452 | return "unkown"; | 1452 | return "unknown"; |
1453 | } | 1453 | } |
1454 | 1454 | ||
1455 | return "bug"; | 1455 | return "bug"; |
diff --git a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c index 24ad17ec7fcd..4c3b67c13047 100644 --- a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c +++ b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c | |||
@@ -982,7 +982,7 @@ static int qlcnic_check_npar_opertional(struct qlcnic_adapter *adapter) | |||
982 | } | 982 | } |
983 | if (!npar_opt_timeo) { | 983 | if (!npar_opt_timeo) { |
984 | dev_err(&adapter->pdev->dev, | 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 | return -EIO; | 986 | return -EIO; |
987 | } | 987 | } |
988 | return 0; | 988 | return 0; |
diff --git a/drivers/rpmsg/virtio_rpmsg_bus.c b/drivers/rpmsg/virtio_rpmsg_bus.c index 1859f71372e2..a3c4c030007d 100644 --- a/drivers/rpmsg/virtio_rpmsg_bus.c +++ b/drivers/rpmsg/virtio_rpmsg_bus.c | |||
@@ -841,7 +841,7 @@ static void rpmsg_recv_done(struct virtqueue *rvq) | |||
841 | /* farewell, ept, we don't need you anymore */ | 841 | /* farewell, ept, we don't need you anymore */ |
842 | kref_put(&ept->refcount, __ept_release); | 842 | kref_put(&ept->refcount, __ept_release); |
843 | } else | 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 | /* publish the real size of the buffer */ | 846 | /* publish the real size of the buffer */ |
847 | sg_init_one(&sg, msg, RPMSG_BUF_SIZE); | 847 | sg_init_one(&sg, msg, RPMSG_BUF_SIZE); |
diff --git a/drivers/target/sbp/sbp_target.c b/drivers/target/sbp/sbp_target.c index 0d6d7c1f025e..be793883413d 100644 --- a/drivers/target/sbp/sbp_target.c +++ b/drivers/target/sbp/sbp_target.c | |||
@@ -1718,7 +1718,7 @@ static struct se_node_acl *sbp_alloc_fabric_acl(struct se_portal_group *se_tpg) | |||
1718 | 1718 | ||
1719 | nacl = kzalloc(sizeof(struct sbp_nacl), GFP_KERNEL); | 1719 | nacl = kzalloc(sizeof(struct sbp_nacl), GFP_KERNEL); |
1720 | if (!nacl) { | 1720 | if (!nacl) { |
1721 | pr_err("Unable to alocate struct sbp_nacl\n"); | 1721 | pr_err("Unable to allocate struct sbp_nacl\n"); |
1722 | return NULL; | 1722 | return NULL; |
1723 | } | 1723 | } |
1724 | 1724 | ||