Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Masanari Iida and committed by
Jiri Kosina
278cee05 b6f4287c

+8 -8
+1 -1
drivers/cpufreq/s3c2416-cpufreq.c
··· 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 }
+1 -1
drivers/net/ethernet/mellanox/mlx4/main.c
··· 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
+1 -1
drivers/net/ethernet/neterion/vxge/vxge-main.c
··· 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;
+1 -1
drivers/net/wireless/ath/ath9k/Kconfig
··· 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
+1 -1
drivers/scsi/libiscsi_tcp.c
··· 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
+1 -1
drivers/scsi/pmcraid.c
··· 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 }
+2 -2
lib/Kconfig.kgdb
··· 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"