diff options
author | Masanari Iida <standby24x7@gmail.com> | 2012-02-23 09:42:19 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2012-04-05 20:04:27 -0400 |
commit | 6997991ab0db72ee92b7fd63e70679d415c8e95c (patch) | |
tree | c11e927d054b66f5d9bad1670438f4eb5e058405 | |
parent | 5edfe7d84133588c020e5234b5763df8805f1cac (diff) |
mips: Fix printk typos in arc/mips
Correct spelling "platfom" to "platform", "deactived" to "deactivated"
and "deprectated" to "deprecated" in arch/mips directory.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | arch/mips/kernel/mips-mt.c | 2 | ||||
-rw-r--r-- | arch/mips/lantiq/xway/gpio.c | 2 | ||||
-rw-r--r-- | arch/mips/lantiq/xway/gpio_ebu.c | 2 | ||||
-rw-r--r-- | arch/mips/lantiq/xway/gpio_stp.c | 2 | ||||
-rw-r--r-- | arch/mips/pci/pci-lantiq.c | 2 | ||||
-rw-r--r-- | arch/mips/sni/pcimt.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/arch/mips/kernel/mips-mt.c b/arch/mips/kernel/mips-mt.c index c23d11f6851d..b3b0b9464450 100644 --- a/arch/mips/kernel/mips-mt.c +++ b/arch/mips/kernel/mips-mt.c | |||
@@ -210,7 +210,7 @@ void mips_mt_set_cpuoptions(void) | |||
210 | unsigned int nconfig7 = oconfig7; | 210 | unsigned int nconfig7 = oconfig7; |
211 | 211 | ||
212 | if (mt_opt_norps) { | 212 | if (mt_opt_norps) { |
213 | printk("\"norps\" option deprectated: use \"rpsctl=\"\n"); | 213 | printk("\"norps\" option deprecated: use \"rpsctl=\"\n"); |
214 | } | 214 | } |
215 | if (mt_opt_rpsctl >= 0) { | 215 | if (mt_opt_rpsctl >= 0) { |
216 | printk("34K return prediction stack override set to %d.\n", | 216 | printk("34K return prediction stack override set to %d.\n", |
diff --git a/arch/mips/lantiq/xway/gpio.c b/arch/mips/lantiq/xway/gpio.c index d2fa98f3c78d..c429a5bc080f 100644 --- a/arch/mips/lantiq/xway/gpio.c +++ b/arch/mips/lantiq/xway/gpio.c | |||
@@ -188,7 +188,7 @@ int __init ltq_gpio_init(void) | |||
188 | int ret = platform_driver_register(<q_gpio_driver); | 188 | int ret = platform_driver_register(<q_gpio_driver); |
189 | 189 | ||
190 | if (ret) | 190 | if (ret) |
191 | pr_info("ltq_gpio : Error registering platfom driver!"); | 191 | pr_info("ltq_gpio : Error registering platform driver!"); |
192 | return ret; | 192 | return ret; |
193 | } | 193 | } |
194 | 194 | ||
diff --git a/arch/mips/lantiq/xway/gpio_ebu.c b/arch/mips/lantiq/xway/gpio_ebu.c index b91c7f17f10f..aae17170472f 100644 --- a/arch/mips/lantiq/xway/gpio_ebu.c +++ b/arch/mips/lantiq/xway/gpio_ebu.c | |||
@@ -119,7 +119,7 @@ static int __init ltq_ebu_init(void) | |||
119 | int ret = platform_driver_register(<q_ebu_driver); | 119 | int ret = platform_driver_register(<q_ebu_driver); |
120 | 120 | ||
121 | if (ret) | 121 | if (ret) |
122 | pr_info("ltq_ebu : Error registering platfom driver!"); | 122 | pr_info("ltq_ebu : Error registering platform driver!"); |
123 | return ret; | 123 | return ret; |
124 | } | 124 | } |
125 | 125 | ||
diff --git a/arch/mips/lantiq/xway/gpio_stp.c b/arch/mips/lantiq/xway/gpio_stp.c index ff9991cddeaa..fd07d87adaa9 100644 --- a/arch/mips/lantiq/xway/gpio_stp.c +++ b/arch/mips/lantiq/xway/gpio_stp.c | |||
@@ -150,7 +150,7 @@ int __init ltq_stp_init(void) | |||
150 | int ret = platform_driver_register(<q_stp_driver); | 150 | int ret = platform_driver_register(<q_stp_driver); |
151 | 151 | ||
152 | if (ret) | 152 | if (ret) |
153 | pr_info("ltq_stp: error registering platfom driver"); | 153 | pr_info("ltq_stp: error registering platform driver"); |
154 | return ret; | 154 | return ret; |
155 | } | 155 | } |
156 | 156 | ||
diff --git a/arch/mips/pci/pci-lantiq.c b/arch/mips/pci/pci-lantiq.c index be1e1afe12c3..df3dca0ca622 100644 --- a/arch/mips/pci/pci-lantiq.c +++ b/arch/mips/pci/pci-lantiq.c | |||
@@ -296,7 +296,7 @@ int __init pcibios_init(void) | |||
296 | { | 296 | { |
297 | int ret = platform_driver_register(<q_pci_driver); | 297 | int ret = platform_driver_register(<q_pci_driver); |
298 | if (ret) | 298 | if (ret) |
299 | printk(KERN_INFO "ltq_pci: Error registering platfom driver!"); | 299 | printk(KERN_INFO "ltq_pci: Error registering platform driver!"); |
300 | return ret; | 300 | return ret; |
301 | } | 301 | } |
302 | 302 | ||
diff --git a/arch/mips/sni/pcimt.c b/arch/mips/sni/pcimt.c index ed3b3d317358..cdb1417fba59 100644 --- a/arch/mips/sni/pcimt.c +++ b/arch/mips/sni/pcimt.c | |||
@@ -29,7 +29,7 @@ static void __init sni_pcimt_sc_init(void) | |||
29 | 29 | ||
30 | scsiz = cacheconf & 7; | 30 | scsiz = cacheconf & 7; |
31 | if (scsiz == 0) { | 31 | if (scsiz == 0) { |
32 | printk("Second level cache is deactived.\n"); | 32 | printk("Second level cache is deactivated.\n"); |
33 | return; | 33 | return; |
34 | } | 34 | } |
35 | if (scsiz >= 6) { | 35 | if (scsiz >= 6) { |