aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-05-22 22:22:50 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2012-05-22 22:22:50 -0400
commite8650a08232e75274304b812ff04cfce9af9671c (patch)
tree0609c942e6ca99016e788ff2ee2bbed1bb9215a4 /arch
parent3c2c4b73aa79e4a1b601710b59e092441175f4bb (diff)
parentf70d4a95edc7da87f39cd8b603ba131df2c198ed (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
Pull trivial updates from Jiri Kosina: "As usual, it's mostly typo fixes, redundant code elimination and some documentation updates." * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (57 commits) edac, mips: don't change code that has been removed in edac/mips tree xtensa: Change mail addresses of Hannes Weiner and Oskar Schirmer lib: Change mail address of Oskar Schirmer net: Change mail address of Oskar Schirmer arm/m68k: Change mail address of Sebastian Hess i2c: Change mail address of Oskar Schirmer net: Fix tcp_build_and_update_options comment in struct tcp_sock atomic64_32.h: fix parameter naming mismatch Kconfig: replace "--- help ---" with "---help---" c2port: fix bogus Kconfig "default no" edac: Fix spelling errors. qla1280: Remove redundant NULL check before release_firmware() call remoteproc: remove redundant NULL check before release_firmware() qla2xxx: Remove redundant NULL check before release_firmware() call. aic94xx: Get rid of redundant NULL check before release_firmware() call tehuti: delete redundant NULL check before release_firmware() qlogic: get rid of a redundant test for NULL before call to release_firmware() bna: remove redundant NULL test before release_firmware() tg3: remove redundant NULL test before release_firmware() call typhoon: get rid of redundant conditional before all to release_firmware() ...
Diffstat (limited to 'arch')
-rw-r--r--arch/alpha/kernel/pci_iommu.c20
-rw-r--r--arch/arm/Kconfig4
-rw-r--r--arch/arm/mach-s3c64xx/Kconfig4
-rw-r--r--arch/arm/nwfpe/fpmodule.c2
-rw-r--r--arch/blackfin/Kconfig2
-rw-r--r--arch/m68k/Kconfig.cpu2
-rw-r--r--arch/m68k/platform/coldfire/m532x.c2
-rw-r--r--arch/mips/Kconfig4
-rw-r--r--arch/mips/Kconfig.debug2
-rw-r--r--arch/mips/kernel/mips-mt.c2
-rw-r--r--arch/mips/lantiq/xway/gpio.c2
-rw-r--r--arch/mips/lantiq/xway/gpio_ebu.c2
-rw-r--r--arch/mips/lantiq/xway/gpio_stp.c2
-rw-r--r--arch/mips/sni/pcimt.c2
-rw-r--r--arch/openrisc/Kconfig2
-rw-r--r--arch/powerpc/platforms/Kconfig.cputype4
-rw-r--r--arch/powerpc/platforms/pseries/Kconfig2
-rw-r--r--arch/sh/Kconfig.cpu2
-rw-r--r--arch/x86/include/asm/atomic64_32.h10
-rw-r--r--arch/x86/kernel/cpu/match.c2
-rw-r--r--arch/xtensa/variants/s6000/dmac.c2
-rw-r--r--arch/xtensa/variants/s6000/gpio.c4
-rw-r--r--arch/xtensa/variants/s6000/include/variant/dmac.h2
-rw-r--r--arch/xtensa/variants/s6000/irq.c4
24 files changed, 43 insertions, 43 deletions
diff --git a/arch/alpha/kernel/pci_iommu.c b/arch/alpha/kernel/pci_iommu.c
index cd634795aa9c..3f844d26d2c7 100644
--- a/arch/alpha/kernel/pci_iommu.c
+++ b/arch/alpha/kernel/pci_iommu.c
@@ -236,7 +236,7 @@ static int pci_dac_dma_supported(struct pci_dev *dev, u64 mask)
236 ok = 0; 236 ok = 0;
237 237
238 /* If both conditions above are met, we are fine. */ 238 /* If both conditions above are met, we are fine. */
239 DBGA("pci_dac_dma_supported %s from %p\n", 239 DBGA("pci_dac_dma_supported %s from %pf\n",
240 ok ? "yes" : "no", __builtin_return_address(0)); 240 ok ? "yes" : "no", __builtin_return_address(0));
241 241
242 return ok; 242 return ok;
@@ -268,7 +268,7 @@ pci_map_single_1(struct pci_dev *pdev, void *cpu_addr, size_t size,
268 && paddr + size <= __direct_map_size) { 268 && paddr + size <= __direct_map_size) {
269 ret = paddr + __direct_map_base; 269 ret = paddr + __direct_map_base;
270 270
271 DBGA2("pci_map_single: [%p,%zx] -> direct %llx from %p\n", 271 DBGA2("pci_map_single: [%p,%zx] -> direct %llx from %pf\n",
272 cpu_addr, size, ret, __builtin_return_address(0)); 272 cpu_addr, size, ret, __builtin_return_address(0));
273 273
274 return ret; 274 return ret;
@@ -279,7 +279,7 @@ pci_map_single_1(struct pci_dev *pdev, void *cpu_addr, size_t size,
279 if (dac_allowed) { 279 if (dac_allowed) {
280 ret = paddr + alpha_mv.pci_dac_offset; 280 ret = paddr + alpha_mv.pci_dac_offset;
281 281
282 DBGA2("pci_map_single: [%p,%zx] -> DAC %llx from %p\n", 282 DBGA2("pci_map_single: [%p,%zx] -> DAC %llx from %pf\n",
283 cpu_addr, size, ret, __builtin_return_address(0)); 283 cpu_addr, size, ret, __builtin_return_address(0));
284 284
285 return ret; 285 return ret;
@@ -316,7 +316,7 @@ pci_map_single_1(struct pci_dev *pdev, void *cpu_addr, size_t size,
316 ret = arena->dma_base + dma_ofs * PAGE_SIZE; 316 ret = arena->dma_base + dma_ofs * PAGE_SIZE;
317 ret += (unsigned long)cpu_addr & ~PAGE_MASK; 317 ret += (unsigned long)cpu_addr & ~PAGE_MASK;
318 318
319 DBGA2("pci_map_single: [%p,%zx] np %ld -> sg %llx from %p\n", 319 DBGA2("pci_map_single: [%p,%zx] np %ld -> sg %llx from %pf\n",
320 cpu_addr, size, npages, ret, __builtin_return_address(0)); 320 cpu_addr, size, npages, ret, __builtin_return_address(0));
321 321
322 return ret; 322 return ret;
@@ -385,14 +385,14 @@ static void alpha_pci_unmap_page(struct device *dev, dma_addr_t dma_addr,
385 && dma_addr < __direct_map_base + __direct_map_size) { 385 && dma_addr < __direct_map_base + __direct_map_size) {
386 /* Nothing to do. */ 386 /* Nothing to do. */
387 387
388 DBGA2("pci_unmap_single: direct [%llx,%zx] from %p\n", 388 DBGA2("pci_unmap_single: direct [%llx,%zx] from %pf\n",
389 dma_addr, size, __builtin_return_address(0)); 389 dma_addr, size, __builtin_return_address(0));
390 390
391 return; 391 return;
392 } 392 }
393 393
394 if (dma_addr > 0xffffffff) { 394 if (dma_addr > 0xffffffff) {
395 DBGA2("pci64_unmap_single: DAC [%llx,%zx] from %p\n", 395 DBGA2("pci64_unmap_single: DAC [%llx,%zx] from %pf\n",
396 dma_addr, size, __builtin_return_address(0)); 396 dma_addr, size, __builtin_return_address(0));
397 return; 397 return;
398 } 398 }
@@ -424,7 +424,7 @@ static void alpha_pci_unmap_page(struct device *dev, dma_addr_t dma_addr,
424 424
425 spin_unlock_irqrestore(&arena->lock, flags); 425 spin_unlock_irqrestore(&arena->lock, flags);
426 426
427 DBGA2("pci_unmap_single: sg [%llx,%zx] np %ld from %p\n", 427 DBGA2("pci_unmap_single: sg [%llx,%zx] np %ld from %pf\n",
428 dma_addr, size, npages, __builtin_return_address(0)); 428 dma_addr, size, npages, __builtin_return_address(0));
429} 429}
430 430
@@ -447,7 +447,7 @@ try_again:
447 cpu_addr = (void *)__get_free_pages(gfp, order); 447 cpu_addr = (void *)__get_free_pages(gfp, order);
448 if (! cpu_addr) { 448 if (! cpu_addr) {
449 printk(KERN_INFO "pci_alloc_consistent: " 449 printk(KERN_INFO "pci_alloc_consistent: "
450 "get_free_pages failed from %p\n", 450 "get_free_pages failed from %pf\n",
451 __builtin_return_address(0)); 451 __builtin_return_address(0));
452 /* ??? Really atomic allocation? Otherwise we could play 452 /* ??? Really atomic allocation? Otherwise we could play
453 with vmalloc and sg if we can't find contiguous memory. */ 453 with vmalloc and sg if we can't find contiguous memory. */
@@ -466,7 +466,7 @@ try_again:
466 goto try_again; 466 goto try_again;
467 } 467 }
468 468
469 DBGA2("pci_alloc_consistent: %zx -> [%p,%llx] from %p\n", 469 DBGA2("pci_alloc_consistent: %zx -> [%p,%llx] from %pf\n",
470 size, cpu_addr, *dma_addrp, __builtin_return_address(0)); 470 size, cpu_addr, *dma_addrp, __builtin_return_address(0));
471 471
472 return cpu_addr; 472 return cpu_addr;
@@ -486,7 +486,7 @@ static void alpha_pci_free_coherent(struct device *dev, size_t size,
486 pci_unmap_single(pdev, dma_addr, size, PCI_DMA_BIDIRECTIONAL); 486 pci_unmap_single(pdev, dma_addr, size, PCI_DMA_BIDIRECTIONAL);
487 free_pages((unsigned long)cpu_addr, get_order(size)); 487 free_pages((unsigned long)cpu_addr, get_order(size));
488 488
489 DBGA2("pci_free_consistent: [%llx,%zx] from %p\n", 489 DBGA2("pci_free_consistent: [%llx,%zx] from %pf\n",
490 dma_addr, size, __builtin_return_address(0)); 490 dma_addr, size, __builtin_return_address(0));
491} 491}
492 492
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 0a2fc01891a9..76edcfe8b56f 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -1914,10 +1914,10 @@ choice
1914 default ZBOOT_ROM_NONE 1914 default ZBOOT_ROM_NONE
1915 help 1915 help
1916 Include experimental SD/MMC loading code in the ROM-able zImage. 1916 Include experimental SD/MMC loading code in the ROM-able zImage.
1917 With this enabled it is possible to write the the ROM-able zImage 1917 With this enabled it is possible to write the ROM-able zImage
1918 kernel image to an MMC or SD card and boot the kernel straight 1918 kernel image to an MMC or SD card and boot the kernel straight
1919 from the reset vector. At reset the processor Mask ROM will load 1919 from the reset vector. At reset the processor Mask ROM will load
1920 the first part of the the ROM-able zImage which in turn loads the 1920 the first part of the ROM-able zImage which in turn loads the
1921 rest the kernel image to RAM. 1921 rest the kernel image to RAM.
1922 1922
1923config ZBOOT_ROM_NONE 1923config ZBOOT_ROM_NONE
diff --git a/arch/arm/mach-s3c64xx/Kconfig b/arch/arm/mach-s3c64xx/Kconfig
index 82c0915729ee..06ca1cd4cae2 100644
--- a/arch/arm/mach-s3c64xx/Kconfig
+++ b/arch/arm/mach-s3c64xx/Kconfig
@@ -210,7 +210,7 @@ config SMDK6410_WM1190_EV1
210 and audio daughtercard for the Samsung SMDK6410 reference 210 and audio daughtercard for the Samsung SMDK6410 reference
211 platform. Enabling this option will build support for this 211 platform. Enabling this option will build support for this
212 module into the kernel. The presence of the module will be 212 module into the kernel. The presence of the module will be
213 detected at runtime so the the resulting kernel can be used 213 detected at runtime so the resulting kernel can be used
214 with or without the 1190-EV1 fitted. 214 with or without the 1190-EV1 fitted.
215 215
216config SMDK6410_WM1192_EV1 216config SMDK6410_WM1192_EV1
@@ -226,7 +226,7 @@ config SMDK6410_WM1192_EV1
226 daughtercard for the Samsung SMDK6410 reference platform. 226 daughtercard for the Samsung SMDK6410 reference platform.
227 Enabling this option will build support for this module into 227 Enabling this option will build support for this module into
228 the kernel. The presence of the daughtercard will be 228 the kernel. The presence of the daughtercard will be
229 detected at runtime so the the resulting kernel can be used 229 detected at runtime so the resulting kernel can be used
230 with or without the 1192-EV1 fitted. 230 with or without the 1192-EV1 fitted.
231 231
232config MACH_NCP 232config MACH_NCP
diff --git a/arch/arm/nwfpe/fpmodule.c b/arch/arm/nwfpe/fpmodule.c
index cb7658e8acc5..4e729f055a81 100644
--- a/arch/arm/nwfpe/fpmodule.c
+++ b/arch/arm/nwfpe/fpmodule.c
@@ -147,7 +147,7 @@ void float_raise(signed char flags)
147#ifdef CONFIG_DEBUG_USER 147#ifdef CONFIG_DEBUG_USER
148 if (flags & debug) 148 if (flags & debug)
149 printk(KERN_DEBUG 149 printk(KERN_DEBUG
150 "NWFPE: %s[%d] takes exception %08x at %p from %08lx\n", 150 "NWFPE: %s[%d] takes exception %08x at %pf from %08lx\n",
151 current->comm, current->pid, flags, 151 current->comm, current->pid, flags,
152 __builtin_return_address(0), GET_USERREG()->ARM_pc); 152 __builtin_return_address(0), GET_USERREG()->ARM_pc);
153#endif 153#endif
diff --git a/arch/blackfin/Kconfig b/arch/blackfin/Kconfig
index 7f3c589cc024..79cfe2614bcc 100644
--- a/arch/blackfin/Kconfig
+++ b/arch/blackfin/Kconfig
@@ -1309,7 +1309,7 @@ config PM_BFIN_WAKE_GP
1309 (all processors, except ADSP-BF549). This option sets 1309 (all processors, except ADSP-BF549). This option sets
1310 the general-purpose wake-up enable (GPWE) control bit to enable 1310 the general-purpose wake-up enable (GPWE) control bit to enable
1311 wake-up upon detection of an active low signal on the /GPW (PH7) pin. 1311 wake-up upon detection of an active low signal on the /GPW (PH7) pin.
1312 On ADSP-BF549 this option enables the the same functionality on the 1312 On ADSP-BF549 this option enables the same functionality on the
1313 /MRXON pin also PH7. 1313 /MRXON pin also PH7.
1314 1314
1315config PM_BFIN_WAKE_PA15 1315config PM_BFIN_WAKE_PA15
diff --git a/arch/m68k/Kconfig.cpu b/arch/m68k/Kconfig.cpu
index 8a9c767125a4..51b3274cbe71 100644
--- a/arch/m68k/Kconfig.cpu
+++ b/arch/m68k/Kconfig.cpu
@@ -7,7 +7,7 @@ choice
7 help 7 help
8 The Freescale (was Motorola) M68K family of processors implements 8 The Freescale (was Motorola) M68K family of processors implements
9 the full 68000 processor instruction set. 9 the full 68000 processor instruction set.
10 The Freescale ColdFire family of processors is a modern derivitive 10 The Freescale ColdFire family of processors is a modern derivative
11 of the 68000 processor family. They are mainly targeted at embedded 11 of the 68000 processor family. They are mainly targeted at embedded
12 applications, and are all System-On-Chip (SOC) devices, as opposed 12 applications, and are all System-On-Chip (SOC) devices, as opposed
13 to stand alone CPUs. They implement a subset of the original 68000 13 to stand alone CPUs. They implement a subset of the original 68000
diff --git a/arch/m68k/platform/coldfire/m532x.c b/arch/m68k/platform/coldfire/m532x.c
index 8e9476d59a65..5394223639f8 100644
--- a/arch/m68k/platform/coldfire/m532x.c
+++ b/arch/m68k/platform/coldfire/m532x.c
@@ -7,7 +7,7 @@
7 * Copyright (C) 2000, Lineo (www.lineo.com) 7 * Copyright (C) 2000, Lineo (www.lineo.com)
8 * Yaroslav Vinogradov yaroslav.vinogradov@freescale.com 8 * Yaroslav Vinogradov yaroslav.vinogradov@freescale.com
9 * Copyright Freescale Semiconductor, Inc 2006 9 * Copyright Freescale Semiconductor, Inc 2006
10 * Copyright (c) 2006, emlix, Sebastian Hess <sh@emlix.com> 10 * Copyright (c) 2006, emlix, Sebastian Hess <shess@hessware.de>
11 * 11 *
12 * This program is free software; you can redistribute it and/or modify 12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by 13 * it under the terms of the GNU General Public License as published by
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
index 186fc8cf9ee0..f5e121213c22 100644
--- a/arch/mips/Kconfig
+++ b/arch/mips/Kconfig
@@ -1002,12 +1002,12 @@ config HOLES_IN_ZONE
1002 bool 1002 bool
1003 1003
1004# 1004#
1005# Endianess selection. Sufficiently obscure so many users don't know what to 1005# Endianness selection. Sufficiently obscure so many users don't know what to
1006# answer,so we try hard to limit the available choices. Also the use of a 1006# answer,so we try hard to limit the available choices. Also the use of a
1007# choice statement should be more obvious to the user. 1007# choice statement should be more obvious to the user.
1008# 1008#
1009choice 1009choice
1010 prompt "Endianess selection" 1010 prompt "Endianness selection"
1011 help 1011 help
1012 Some MIPS machines can be configured for either little or big endian 1012 Some MIPS machines can be configured for either little or big endian
1013 byte order. These modes require different kernels and a different 1013 byte order. These modes require different kernels and a different
diff --git a/arch/mips/Kconfig.debug b/arch/mips/Kconfig.debug
index 83ed00a5644a..5a43aa0798ca 100644
--- a/arch/mips/Kconfig.debug
+++ b/arch/mips/Kconfig.debug
@@ -57,7 +57,7 @@ config CMDLINE
57 options. 57 options.
58 58
59config CMDLINE_OVERRIDE 59config CMDLINE_OVERRIDE
60 bool "Built-in command line overrides firware arguments" 60 bool "Built-in command line overrides firmware arguments"
61 default n 61 default n
62 depends on CMDLINE_BOOL 62 depends on CMDLINE_BOOL
63 help 63 help
diff --git a/arch/mips/kernel/mips-mt.c b/arch/mips/kernel/mips-mt.c
index 7f3376b1c219..6ded9bd1489c 100644
--- a/arch/mips/kernel/mips-mt.c
+++ b/arch/mips/kernel/mips-mt.c
@@ -209,7 +209,7 @@ void mips_mt_set_cpuoptions(void)
209 unsigned int nconfig7 = oconfig7; 209 unsigned int nconfig7 = oconfig7;
210 210
211 if (mt_opt_norps) { 211 if (mt_opt_norps) {
212 printk("\"norps\" option deprectated: use \"rpsctl=\"\n"); 212 printk("\"norps\" option deprecated: use \"rpsctl=\"\n");
213 } 213 }
214 if (mt_opt_rpsctl >= 0) { 214 if (mt_opt_rpsctl >= 0) {
215 printk("34K return prediction stack override set to %d.\n", 215 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(&ltq_gpio_driver); 188 int ret = platform_driver_register(&ltq_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(&ltq_ebu_driver); 119 int ret = platform_driver_register(&ltq_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(&ltq_stp_driver); 150 int ret = platform_driver_register(&ltq_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/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) {
diff --git a/arch/openrisc/Kconfig b/arch/openrisc/Kconfig
index 7589051e79e0..297bd38f7c5d 100644
--- a/arch/openrisc/Kconfig
+++ b/arch/openrisc/Kconfig
@@ -142,7 +142,7 @@ config DEBUG_STACKOVERFLOW
142 bool "Check for kernel stack overflow" 142 bool "Check for kernel stack overflow"
143 default y 143 default y
144 help 144 help
145 Make extra checks for space avaliable on stack in some 145 Make extra checks for space available on stack in some
146 critical functions. This will cause kernel to run a bit slower, 146 critical functions. This will cause kernel to run a bit slower,
147 but will catch most of kernel stack overruns and exit gracefuly. 147 but will catch most of kernel stack overruns and exit gracefuly.
148 148
diff --git a/arch/powerpc/platforms/Kconfig.cputype b/arch/powerpc/platforms/Kconfig.cputype
index 425db18580a2..9c80fc07384a 100644
--- a/arch/powerpc/platforms/Kconfig.cputype
+++ b/arch/powerpc/platforms/Kconfig.cputype
@@ -258,7 +258,7 @@ config PPC_ICSWX_PID
258 default y 258 default y
259 ---help--- 259 ---help---
260 The PID register in server is used explicitly for ICSWX. In 260 The PID register in server is used explicitly for ICSWX. In
261 embedded systems PID managment is done by the system. 261 embedded systems PID management is done by the system.
262 262
263config PPC_ICSWX_USE_SIGILL 263config PPC_ICSWX_USE_SIGILL
264 bool "Should a bad CT cause a SIGILL?" 264 bool "Should a bad CT cause a SIGILL?"
@@ -266,7 +266,7 @@ config PPC_ICSWX_USE_SIGILL
266 default n 266 default n
267 ---help--- 267 ---help---
268 Should a bad CT used for "non-record form ICSWX" cause an 268 Should a bad CT used for "non-record form ICSWX" cause an
269 illegal intruction signal or should it be silent as 269 illegal instruction signal or should it be silent as
270 architected. 270 architected.
271 271
272 If in doubt, say N here. 272 If in doubt, say N here.
diff --git a/arch/powerpc/platforms/pseries/Kconfig b/arch/powerpc/platforms/pseries/Kconfig
index 178a5f300bc9..837cf49357ed 100644
--- a/arch/powerpc/platforms/pseries/Kconfig
+++ b/arch/powerpc/platforms/pseries/Kconfig
@@ -67,7 +67,7 @@ config IO_EVENT_IRQ
67 67
68 This option will only enable the IO event platform code. You 68 This option will only enable the IO event platform code. You
69 will still need to enable or compile the actual drivers 69 will still need to enable or compile the actual drivers
70 that use this infrastruture to handle IO event interrupts. 70 that use this infrastructure to handle IO event interrupts.
71 71
72 Say Y if you are unsure. 72 Say Y if you are unsure.
73 73
diff --git a/arch/sh/Kconfig.cpu b/arch/sh/Kconfig.cpu
index ddf096c7d8bf..770ff2d5b94d 100644
--- a/arch/sh/Kconfig.cpu
+++ b/arch/sh/Kconfig.cpu
@@ -1,7 +1,7 @@
1menu "Processor features" 1menu "Processor features"
2 2
3choice 3choice
4 prompt "Endianess selection" 4 prompt "Endianness selection"
5 default CPU_LITTLE_ENDIAN 5 default CPU_LITTLE_ENDIAN
6 help 6 help
7 Some SuperH machines can be configured for either little or big 7 Some SuperH machines can be configured for either little or big
diff --git a/arch/x86/include/asm/atomic64_32.h b/arch/x86/include/asm/atomic64_32.h
index 198119910da5..b154de75c90c 100644
--- a/arch/x86/include/asm/atomic64_32.h
+++ b/arch/x86/include/asm/atomic64_32.h
@@ -63,7 +63,7 @@ ATOMIC64_DECL(add_unless);
63 63
64/** 64/**
65 * atomic64_cmpxchg - cmpxchg atomic64 variable 65 * atomic64_cmpxchg - cmpxchg atomic64 variable
66 * @p: pointer to type atomic64_t 66 * @v: pointer to type atomic64_t
67 * @o: expected value 67 * @o: expected value
68 * @n: new value 68 * @n: new value
69 * 69 *
@@ -98,7 +98,7 @@ static inline long long atomic64_xchg(atomic64_t *v, long long n)
98/** 98/**
99 * atomic64_set - set atomic64 variable 99 * atomic64_set - set atomic64 variable
100 * @v: pointer to type atomic64_t 100 * @v: pointer to type atomic64_t
101 * @n: value to assign 101 * @i: value to assign
102 * 102 *
103 * Atomically sets the value of @v to @n. 103 * Atomically sets the value of @v to @n.
104 */ 104 */
@@ -200,7 +200,7 @@ static inline long long atomic64_sub(long long i, atomic64_t *v)
200 * atomic64_sub_and_test - subtract value from variable and test result 200 * atomic64_sub_and_test - subtract value from variable and test result
201 * @i: integer value to subtract 201 * @i: integer value to subtract
202 * @v: pointer to type atomic64_t 202 * @v: pointer to type atomic64_t
203 * 203 *
204 * Atomically subtracts @i from @v and returns 204 * Atomically subtracts @i from @v and returns
205 * true if the result is zero, or false for all 205 * true if the result is zero, or false for all
206 * other cases. 206 * other cases.
@@ -224,9 +224,9 @@ static inline void atomic64_inc(atomic64_t *v)
224 224
225/** 225/**
226 * atomic64_dec - decrement atomic64 variable 226 * atomic64_dec - decrement atomic64 variable
227 * @ptr: pointer to type atomic64_t 227 * @v: pointer to type atomic64_t
228 * 228 *
229 * Atomically decrements @ptr by 1. 229 * Atomically decrements @v by 1.
230 */ 230 */
231static inline void atomic64_dec(atomic64_t *v) 231static inline void atomic64_dec(atomic64_t *v)
232{ 232{
diff --git a/arch/x86/kernel/cpu/match.c b/arch/x86/kernel/cpu/match.c
index 5502b289341b..36565373af87 100644
--- a/arch/x86/kernel/cpu/match.c
+++ b/arch/x86/kernel/cpu/match.c
@@ -23,7 +23,7 @@
23 * %X86_MODEL_ANY, %X86_FEATURE_ANY or 0 (except for vendor) 23 * %X86_MODEL_ANY, %X86_FEATURE_ANY or 0 (except for vendor)
24 * 24 *
25 * Arrays used to match for this should also be declared using 25 * Arrays used to match for this should also be declared using
26 * MODULE_DEVICE_TABLE(x86_cpu, ...) 26 * MODULE_DEVICE_TABLE(x86cpu, ...)
27 * 27 *
28 * This always matches against the boot cpu, assuming models and features are 28 * This always matches against the boot cpu, assuming models and features are
29 * consistent over all CPUs. 29 * consistent over all CPUs.
diff --git a/arch/xtensa/variants/s6000/dmac.c b/arch/xtensa/variants/s6000/dmac.c
index dc7f7c573518..340f5bb0b5ef 100644
--- a/arch/xtensa/variants/s6000/dmac.c
+++ b/arch/xtensa/variants/s6000/dmac.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Authors: Oskar Schirmer <os@emlix.com> 2 * Authors: Oskar Schirmer <oskar@scara.com>
3 * Daniel Gloeckner <dg@emlix.com> 3 * Daniel Gloeckner <dg@emlix.com>
4 * (c) 2008 emlix GmbH http://www.emlix.com 4 * (c) 2008 emlix GmbH http://www.emlix.com
5 * 5 *
diff --git a/arch/xtensa/variants/s6000/gpio.c b/arch/xtensa/variants/s6000/gpio.c
index 7af0757e001b..b89541ba39ab 100644
--- a/arch/xtensa/variants/s6000/gpio.c
+++ b/arch/xtensa/variants/s6000/gpio.c
@@ -2,8 +2,8 @@
2 * s6000 gpio driver 2 * s6000 gpio driver
3 * 3 *
4 * Copyright (c) 2009 emlix GmbH 4 * Copyright (c) 2009 emlix GmbH
5 * Authors: Oskar Schirmer <os@emlix.com> 5 * Authors: Oskar Schirmer <oskar@scara.com>
6 * Johannes Weiner <jw@emlix.com> 6 * Johannes Weiner <hannes@cmpxchg.org>
7 * Daniel Gloeckner <dg@emlix.com> 7 * Daniel Gloeckner <dg@emlix.com>
8 */ 8 */
9#include <linux/bitops.h> 9#include <linux/bitops.h>
diff --git a/arch/xtensa/variants/s6000/include/variant/dmac.h b/arch/xtensa/variants/s6000/include/variant/dmac.h
index e81735b2a206..3f88d9fc6897 100644
--- a/arch/xtensa/variants/s6000/include/variant/dmac.h
+++ b/arch/xtensa/variants/s6000/include/variant/dmac.h
@@ -8,7 +8,7 @@
8 * Copyright (C) 2006 Tensilica Inc. 8 * Copyright (C) 2006 Tensilica Inc.
9 * Copyright (C) 2008 Emlix GmbH <info@emlix.com> 9 * Copyright (C) 2008 Emlix GmbH <info@emlix.com>
10 * Authors: Fabian Godehardt <fg@emlix.com> 10 * Authors: Fabian Godehardt <fg@emlix.com>
11 * Oskar Schirmer <os@emlix.com> 11 * Oskar Schirmer <oskar@scara.com>
12 * Daniel Gloeckner <dg@emlix.com> 12 * Daniel Gloeckner <dg@emlix.com>
13 */ 13 */
14 14
diff --git a/arch/xtensa/variants/s6000/irq.c b/arch/xtensa/variants/s6000/irq.c
index 6651e3285fcf..81a241e79075 100644
--- a/arch/xtensa/variants/s6000/irq.c
+++ b/arch/xtensa/variants/s6000/irq.c
@@ -2,8 +2,8 @@
2 * s6000 irq crossbar 2 * s6000 irq crossbar
3 * 3 *
4 * Copyright (c) 2009 emlix GmbH 4 * Copyright (c) 2009 emlix GmbH
5 * Authors: Johannes Weiner <jw@emlix.com> 5 * Authors: Johannes Weiner <hannes@cmpxchg.org>
6 * Oskar Schirmer <os@emlix.com> 6 * Oskar Schirmer <oskar@scara.com>
7 */ 7 */
8#include <linux/io.h> 8#include <linux/io.h>
9#include <asm/irq.h> 9#include <asm/irq.h>