aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2014-08-29 10:37:33 -0400
committerJiri Kosina <jkosina@suse.cz>2014-09-01 05:18:25 -0400
commit1a84db567aeeb232daad598c7aa2334dda0176b7 (patch)
tree5123df91574e49c60e14fc9519b540cd58a82167 /arch
parent307b28b95ce9717680b5980d67ef0b060c8fde3b (diff)
treewide: fix errors in printk
This patch fix spelling typo in printk. Signed-off-by: Masanari Iida <standby24x7@gmail.com> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> Acked-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'arch')
-rw-r--r--arch/m68k/Kconfig.devices2
-rw-r--r--arch/mips/lantiq/falcon/sysctrl.c2
-rw-r--r--arch/mips/lantiq/xway/sysctrl.c2
-rw-r--r--arch/mips/pci/pci-lantiq.c2
-rw-r--r--arch/powerpc/platforms/powernv/opal.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/arch/m68k/Kconfig.devices b/arch/m68k/Kconfig.devices
index d163991c5717..2a74777667fd 100644
--- a/arch/m68k/Kconfig.devices
+++ b/arch/m68k/Kconfig.devices
@@ -73,7 +73,7 @@ config ATARI_ETHERNEC
73 ROM port. The driver works by polling instead of interrupts, so it 73 ROM port. The driver works by polling instead of interrupts, so it
74 is quite slow. 74 is quite slow.
75 75
76 This driver also suppports the ethernet part of the NetUSBee ROM 76 This driver also supports the ethernet part of the NetUSBee ROM
77 port combined Ethernet/USB adapter. 77 port combined Ethernet/USB adapter.
78 78
79 To compile the actual ethernet driver, choose Y or M in for the NE2000 79 To compile the actual ethernet driver, choose Y or M in for the NE2000
diff --git a/arch/mips/lantiq/falcon/sysctrl.c b/arch/mips/lantiq/falcon/sysctrl.c
index 8f1866d8124d..468ffa043607 100644
--- a/arch/mips/lantiq/falcon/sysctrl.c
+++ b/arch/mips/lantiq/falcon/sysctrl.c
@@ -221,7 +221,7 @@ void __init ltq_soc_init(void)
221 (request_mem_region(res_sys[2].start, 221 (request_mem_region(res_sys[2].start,
222 resource_size(&res_sys[2]), 222 resource_size(&res_sys[2]),
223 res_sys[2].name) < 0)) 223 res_sys[2].name) < 0))
224 pr_err("Failed to request core reources"); 224 pr_err("Failed to request core resources");
225 225
226 status_membase = ioremap_nocache(res_status.start, 226 status_membase = ioremap_nocache(res_status.start,
227 resource_size(&res_status)); 227 resource_size(&res_status));
diff --git a/arch/mips/lantiq/xway/sysctrl.c b/arch/mips/lantiq/xway/sysctrl.c
index 51804b10a036..2b15491de494 100644
--- a/arch/mips/lantiq/xway/sysctrl.c
+++ b/arch/mips/lantiq/xway/sysctrl.c
@@ -318,7 +318,7 @@ void __init ltq_soc_init(void)
318 res_cgu.name) < 0) || 318 res_cgu.name) < 0) ||
319 (request_mem_region(res_ebu.start, resource_size(&res_ebu), 319 (request_mem_region(res_ebu.start, resource_size(&res_ebu),
320 res_ebu.name) < 0)) 320 res_ebu.name) < 0))
321 pr_err("Failed to request core reources"); 321 pr_err("Failed to request core resources");
322 322
323 pmu_membase = ioremap_nocache(res_pmu.start, resource_size(&res_pmu)); 323 pmu_membase = ioremap_nocache(res_pmu.start, resource_size(&res_pmu));
324 ltq_cgu_membase = ioremap_nocache(res_cgu.start, 324 ltq_cgu_membase = ioremap_nocache(res_cgu.start,
diff --git a/arch/mips/pci/pci-lantiq.c b/arch/mips/pci/pci-lantiq.c
index cb1ef9984069..37fe8e7887e2 100644
--- a/arch/mips/pci/pci-lantiq.c
+++ b/arch/mips/pci/pci-lantiq.c
@@ -218,7 +218,7 @@ static int ltq_pci_probe(struct platform_device *pdev)
218 res_cfg = platform_get_resource(pdev, IORESOURCE_MEM, 0); 218 res_cfg = platform_get_resource(pdev, IORESOURCE_MEM, 0);
219 res_bridge = platform_get_resource(pdev, IORESOURCE_MEM, 1); 219 res_bridge = platform_get_resource(pdev, IORESOURCE_MEM, 1);
220 if (!res_cfg || !res_bridge) { 220 if (!res_cfg || !res_bridge) {
221 dev_err(&pdev->dev, "missing memory reources\n"); 221 dev_err(&pdev->dev, "missing memory resources\n");
222 return -EINVAL; 222 return -EINVAL;
223 } 223 }
224 224
diff --git a/arch/powerpc/platforms/powernv/opal.c b/arch/powerpc/platforms/powernv/opal.c
index 199975613fe9..aedc97417d71 100644
--- a/arch/powerpc/platforms/powernv/opal.c
+++ b/arch/powerpc/platforms/powernv/opal.c
@@ -324,7 +324,7 @@ static void opal_handle_message(void)
324 324
325 /* check for errors. */ 325 /* check for errors. */
326 if (ret) { 326 if (ret) {
327 pr_warning("%s: Failed to retrive opal message, err=%lld\n", 327 pr_warning("%s: Failed to retrieve opal message, err=%lld\n",
328 __func__, ret); 328 __func__, ret);
329 return; 329 return;
330 } 330 }