aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2014-01-23 00:21:55 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2014-01-23 00:21:55 -0500
commitbb1281f2aae08e5ef23eb0692c8833e95579cdf2 (patch)
treee00abd368a90eb947df37ba1e6082c864635cb80 /include
parent4988abf1749241bc80600a6b3283d03898d2717c (diff)
parentc04e7da0133fbe7f799b9356982371d228df9994 (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
Pull trivial tree updates from Jiri Kosina: "Usual rocket science stuff from trivial.git" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (39 commits) neighbour.h: fix comment sched: Fix warning on make htmldocs caused by wait.h slab: struct kmem_cache is protected by slab_mutex doc: Fix typo in USB Gadget Documentation of/Kconfig: Spelling s/one/once/ mkregtable: Fix sscanf handling lp5523, lp8501: comment improvements thermal: rcar: comment spelling treewide: fix comments and printk msgs IXP4xx: remove '1 &&' from a condition check in ixp4xx_restart() Documentation: update /proc/uptime field description Documentation: Fix size parameter for snprintf arm: fix comment header and macro name asm-generic: uaccess: Spelling s/a ny/any/ mtd: onenand: fix comment header doc: driver-model/platform.txt: fix a typo drivers: fix typo in DEVTMPFS_MOUNT Kconfig help text doc: Fix typo (acces_process_vm -> access_process_vm) treewide: Fix typos in printk drivers/gpu/drm/qxl/Kconfig: reformat the help text ...
Diffstat (limited to 'include')
-rw-r--r--include/asm-generic/uaccess.h2
-rw-r--r--include/linux/amba/sp810.h8
-rw-r--r--include/linux/slab_def.h2
-rw-r--r--include/linux/tracepoint.h2
-rw-r--r--include/linux/wait.h4
-rw-r--r--include/uapi/linux/neighbour.h2
6 files changed, 9 insertions, 11 deletions
diff --git a/include/asm-generic/uaccess.h b/include/asm-generic/uaccess.h
index dc1269c74a52..72d8803832ff 100644
--- a/include/asm-generic/uaccess.h
+++ b/include/asm-generic/uaccess.h
@@ -3,7 +3,7 @@
3 3
4/* 4/*
5 * User space memory access functions, these should work 5 * User space memory access functions, these should work
6 * on a ny machine that has kernel and user data in the same 6 * on any machine that has kernel and user data in the same
7 * address space, e.g. all NOMMU machines. 7 * address space, e.g. all NOMMU machines.
8 */ 8 */
9#include <linux/sched.h> 9#include <linux/sched.h>
diff --git a/include/linux/amba/sp810.h b/include/linux/amba/sp810.h
index 6636430dd0e6..c7df89f99115 100644
--- a/include/linux/amba/sp810.h
+++ b/include/linux/amba/sp810.h
@@ -1,6 +1,4 @@
1/* 1/*
2 * arch/arm/include/asm/hardware/sp810.h
3 *
4 * ARM PrimeXsys System Controller SP810 header file 2 * ARM PrimeXsys System Controller SP810 header file
5 * 3 *
6 * Copyright (C) 2009 ST Microelectronics 4 * Copyright (C) 2009 ST Microelectronics
@@ -11,8 +9,8 @@
11 * warranty of any kind, whether express or implied. 9 * warranty of any kind, whether express or implied.
12 */ 10 */
13 11
14#ifndef __ASM_ARM_SP810_H 12#ifndef __AMBA_SP810_H
15#define __ASM_ARM_SP810_H 13#define __AMBA_SP810_H
16 14
17#include <linux/io.h> 15#include <linux/io.h>
18 16
@@ -61,4 +59,4 @@ static inline void sysctl_soft_reset(void __iomem *base)
61 writel(0, base + SCSYSSTAT); 59 writel(0, base + SCSYSSTAT);
62} 60}
63 61
64#endif /* __ASM_ARM_SP810_H */ 62#endif /* __AMBA_SP810_H */
diff --git a/include/linux/slab_def.h b/include/linux/slab_def.h
index 09bfffb08a56..40fc39d22d53 100644
--- a/include/linux/slab_def.h
+++ b/include/linux/slab_def.h
@@ -6,7 +6,7 @@
6 */ 6 */
7 7
8struct kmem_cache { 8struct kmem_cache {
9/* 1) Cache tunables. Protected by cache_chain_mutex */ 9/* 1) Cache tunables. Protected by slab_mutex */
10 unsigned int batchcount; 10 unsigned int batchcount;
11 unsigned int limit; 11 unsigned int limit;
12 unsigned int shared; 12 unsigned int shared;
diff --git a/include/linux/tracepoint.h b/include/linux/tracepoint.h
index f16dc0a40049..accc497f8d72 100644
--- a/include/linux/tracepoint.h
+++ b/include/linux/tracepoint.h
@@ -276,7 +276,7 @@ static inline void tracepoint_synchronize_unregister(void)
276 * For use with the TRACE_EVENT macro: 276 * For use with the TRACE_EVENT macro:
277 * 277 *
278 * We define a tracepoint, its arguments, its printk format 278 * We define a tracepoint, its arguments, its printk format
279 * and its 'fast binay record' layout. 279 * and its 'fast binary record' layout.
280 * 280 *
281 * Firstly, name your tracepoint via TRACE_EVENT(name : the 281 * Firstly, name your tracepoint via TRACE_EVENT(name : the
282 * 'subsystem_event' notation is fine. 282 * 'subsystem_event' notation is fine.
diff --git a/include/linux/wait.h b/include/linux/wait.h
index eaa00b10abaa..559044c79232 100644
--- a/include/linux/wait.h
+++ b/include/linux/wait.h
@@ -286,8 +286,8 @@ do { \
286 * wait_event_cmd - sleep until a condition gets true 286 * wait_event_cmd - sleep until a condition gets true
287 * @wq: the waitqueue to wait on 287 * @wq: the waitqueue to wait on
288 * @condition: a C expression for the event to wait for 288 * @condition: a C expression for the event to wait for
289 * cmd1: the command will be executed before sleep 289 * @cmd1: the command will be executed before sleep
290 * cmd2: the command will be executed after sleep 290 * @cmd2: the command will be executed after sleep
291 * 291 *
292 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the 292 * The process is put to sleep (TASK_UNINTERRUPTIBLE) until the
293 * @condition evaluates to true. The @condition is checked each time 293 * @condition evaluates to true. The @condition is checked each time
diff --git a/include/uapi/linux/neighbour.h b/include/uapi/linux/neighbour.h
index f175212420ab..d3ef583104e0 100644
--- a/include/uapi/linux/neighbour.h
+++ b/include/uapi/linux/neighbour.h
@@ -58,7 +58,7 @@ enum {
58 58
59/* NUD_NOARP & NUD_PERMANENT are pseudostates, they never change 59/* NUD_NOARP & NUD_PERMANENT are pseudostates, they never change
60 and make no address resolution or NUD. 60 and make no address resolution or NUD.
61 NUD_PERMANENT is also cannot be deleted by garbage collectors. 61 NUD_PERMANENT also cannot be deleted by garbage collectors.
62 */ 62 */
63 63
64struct nda_cacheinfo { 64struct nda_cacheinfo {