Commit 278cee0515a3b3abb0d4e614d969b5be35c2c288

Authored by Masanari Iida
Committed by Jiri Kosina
1 parent b6f4287c49

treewide: Fix typo in printk

Correct spelling typo in printk within various drivers.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

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

drivers/cpufreq/s3c2416-cpufreq.c
... ... @@ -205,7 +205,7 @@
205 205 ret = s3c2416_cpufreq_set_armdiv(s3c_freq,
206 206 clk_get_rate(s3c_freq->hclk) / 1000);
207 207 if (ret < 0) {
208   - pr_err("cpufreq: Failed to to set the armdiv to %lukHz: %d\n",
  208 + pr_err("cpufreq: Failed to set the armdiv to %lukHz: %d\n",
209 209 clk_get_rate(s3c_freq->hclk) / 1000, ret);
210 210 return ret;
211 211 }
drivers/net/ethernet/mellanox/mlx4/main.c
... ... @@ -98,7 +98,7 @@
98 98 static bool enable_64b_cqe_eqe;
99 99 module_param(enable_64b_cqe_eqe, bool, 0444);
100 100 MODULE_PARM_DESC(enable_64b_cqe_eqe,
101   - "Enable 64 byte CQEs/EQEs when the the FW supports this");
  101 + "Enable 64 byte CQEs/EQEs when the FW supports this");
102 102  
103 103 #define HCA_GLOBAL_CAP_MASK 0
104 104  
drivers/net/ethernet/neterion/vxge/vxge-main.c
... ... @@ -3444,7 +3444,7 @@
3444 3444 }
3445 3445  
3446 3446 vxge_debug_init(vxge_hw_device_trace_level_get(hldev),
3447   - "%s : checksuming enabled", __func__);
  3447 + "%s : checksumming enabled", __func__);
3448 3448  
3449 3449 if (high_dma) {
3450 3450 ndev->features |= NETIF_F_HIGHDMA;
drivers/net/wireless/ath/ath9k/Kconfig
... ... @@ -28,7 +28,7 @@
28 28 Atheros IEEE 802.11n AR5008, AR9001 and AR9002 family
29 29 of chipsets. For a specific list of supported external
30 30 cards, laptops that already ship with these cards and
31   - APs that come with these cards refer to to ath9k wiki
  31 + APs that come with these cards refer to ath9k wiki
32 32 products page:
33 33  
34 34 http://wireless.kernel.org/en/users/Drivers/ath9k/products
drivers/scsi/libiscsi_tcp.c
... ... @@ -558,7 +558,7 @@
558 558 if (!rc) {
559 559 iscsi_conn_printk(KERN_ERR, conn, "Could not allocate R2T. "
560 560 "Target has sent more R2Ts than it "
561   - "negotiated for or driver has has leaked.\n");
  561 + "negotiated for or driver has leaked.\n");
562 562 return ISCSI_ERR_PROTO;
563 563 }
564 564  
drivers/scsi/pmcraid.c
... ... @@ -6092,7 +6092,7 @@
6092 6092  
6093 6093 if (IS_ERR(pmcraid_class)) {
6094 6094 error = PTR_ERR(pmcraid_class);
6095   - pmcraid_err("failed to register with with sysfs, error = %x\n",
  6095 + pmcraid_err("failed to register with sysfs, error = %x\n",
6096 6096 error);
6097 6097 goto out_unreg_chrdev;
6098 6098 }
... ... @@ -64,8 +64,8 @@
64 64 default n
65 65 help
66 66 This will add an extra call back to kgdb for the breakpoint
67   - exception handler on which will will allow kgdb to step
68   - through a notify handler.
  67 + exception handler which will allow kgdb to step through a
  68 + notify handler.
69 69  
70 70 config KGDB_KDB
71 71 bool "KGDB_KDB: include kdb frontend for kgdb"