aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2012-11-08 07:57:35 -0500
committerJiri Kosina <jkosina@suse.cz>2012-11-19 08:28:24 -0500
commit4e79162a52da61c3a67d0796b9f0e37a5e0ccbd6 (patch)
treed3e436308ec9ec630f5a5390618b9364895ec281
parent20879696b7660b6c4115a913e39f890d5bbd1f81 (diff)
doc: fix quite a few typos within Documentation
Correct spelling typo in Documentations Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r--Documentation/ABI/testing/dev-kmsg2
-rw-r--r--Documentation/ABI/testing/sysfs-devices-power2
-rw-r--r--Documentation/ABI/testing/sysfs-driver-ppi2
-rw-r--r--Documentation/dma-buf-sharing.txt4
-rw-r--r--Documentation/fault-injection/notifier-error-inject.txt4
-rw-r--r--Documentation/hid/uhid.txt2
-rw-r--r--Documentation/input/alps.txt2
-rw-r--r--Documentation/kbuild/modules.txt2
-rw-r--r--Documentation/misc-devices/mei/mei-amt-version.c4
-rw-r--r--Documentation/video4linux/bttv/Cards2
-rw-r--r--Documentation/vm/frontswap.txt2
11 files changed, 14 insertions, 14 deletions
diff --git a/Documentation/ABI/testing/dev-kmsg b/Documentation/ABI/testing/dev-kmsg
index 7e7e07a82e0e..bb820be48179 100644
--- a/Documentation/ABI/testing/dev-kmsg
+++ b/Documentation/ABI/testing/dev-kmsg
@@ -92,7 +92,7 @@ Description: The /dev/kmsg character device node provides userspace access
92 The flags field carries '-' by default. A 'c' indicates a 92 The flags field carries '-' by default. A 'c' indicates a
93 fragment of a line. All following fragments are flagged with 93 fragment of a line. All following fragments are flagged with
94 '+'. Note, that these hints about continuation lines are not 94 '+'. Note, that these hints about continuation lines are not
95 neccessarily correct, and the stream could be interleaved with 95 necessarily correct, and the stream could be interleaved with
96 unrelated messages, but merging the lines in the output 96 unrelated messages, but merging the lines in the output
97 usually produces better human readable results. A similar 97 usually produces better human readable results. A similar
98 logic is used internally when messages are printed to the 98 logic is used internally when messages are printed to the
diff --git a/Documentation/ABI/testing/sysfs-devices-power b/Documentation/ABI/testing/sysfs-devices-power
index 45000f0db4d4..f76a0447da74 100644
--- a/Documentation/ABI/testing/sysfs-devices-power
+++ b/Documentation/ABI/testing/sysfs-devices-power
@@ -164,7 +164,7 @@ Contact: Rafael J. Wysocki <rjw@sisk.pl>
164Description: 164Description:
165 The /sys/devices/.../wakeup_prevent_sleep_time_ms attribute 165 The /sys/devices/.../wakeup_prevent_sleep_time_ms attribute
166 contains the total time the device has been preventing 166 contains the total time the device has been preventing
167 opportunistic transitions to sleep states from occuring. 167 opportunistic transitions to sleep states from occurring.
168 This attribute is read-only. If the device is not enabled to 168 This attribute is read-only. If the device is not enabled to
169 wake up the system from sleep states, this attribute is not 169 wake up the system from sleep states, this attribute is not
170 present. 170 present.
diff --git a/Documentation/ABI/testing/sysfs-driver-ppi b/Documentation/ABI/testing/sysfs-driver-ppi
index 97a003ee058b..7d1435bc976c 100644
--- a/Documentation/ABI/testing/sysfs-driver-ppi
+++ b/Documentation/ABI/testing/sysfs-driver-ppi
@@ -5,7 +5,7 @@ Contact: xiaoyan.zhang@intel.com
5Description: 5Description:
6 This folder includes the attributes related with PPI (Physical 6 This folder includes the attributes related with PPI (Physical
7 Presence Interface). Only if TPM is supported by BIOS, this 7 Presence Interface). Only if TPM is supported by BIOS, this
8 folder makes sence. The folder path can be got by command 8 folder makes sense. The folder path can be got by command
9 'find /sys/ -name 'pcrs''. For the detail information of PPI, 9 'find /sys/ -name 'pcrs''. For the detail information of PPI,
10 please refer to the PPI specification from 10 please refer to the PPI specification from
11 http://www.trustedcomputinggroup.org/ 11 http://www.trustedcomputinggroup.org/
diff --git a/Documentation/dma-buf-sharing.txt b/Documentation/dma-buf-sharing.txt
index ad86fb86c9a0..0188903bc9e1 100644
--- a/Documentation/dma-buf-sharing.txt
+++ b/Documentation/dma-buf-sharing.txt
@@ -376,7 +376,7 @@ Being able to mmap an export dma-buf buffer object has 2 main use-cases:
376 leaving the cpu domain and flushing caches at fault time. Note that all the 376 leaving the cpu domain and flushing caches at fault time. Note that all the
377 dma_buf files share the same anon inode, hence the exporter needs to replace 377 dma_buf files share the same anon inode, hence the exporter needs to replace
378 the dma_buf file stored in vma->vm_file with it's own if pte shootdown is 378 the dma_buf file stored in vma->vm_file with it's own if pte shootdown is
379 requred. This is because the kernel uses the underlying inode's address_space 379 required. This is because the kernel uses the underlying inode's address_space
380 for vma tracking (and hence pte tracking at shootdown time with 380 for vma tracking (and hence pte tracking at shootdown time with
381 unmap_mapping_range). 381 unmap_mapping_range).
382 382
@@ -388,7 +388,7 @@ Being able to mmap an export dma-buf buffer object has 2 main use-cases:
388 Exporters that shoot down mappings (for any reasons) shall not do any 388 Exporters that shoot down mappings (for any reasons) shall not do any
389 synchronization at fault time with outstanding device operations. 389 synchronization at fault time with outstanding device operations.
390 Synchronization is an orthogonal issue to sharing the backing storage of a 390 Synchronization is an orthogonal issue to sharing the backing storage of a
391 buffer and hence should not be handled by dma-buf itself. This is explictly 391 buffer and hence should not be handled by dma-buf itself. This is explicitly
392 mentioned here because many people seem to want something like this, but if 392 mentioned here because many people seem to want something like this, but if
393 different exporters handle this differently, buffer sharing can fail in 393 different exporters handle this differently, buffer sharing can fail in
394 interesting ways depending upong the exporter (if userspace starts depending 394 interesting ways depending upong the exporter (if userspace starts depending
diff --git a/Documentation/fault-injection/notifier-error-inject.txt b/Documentation/fault-injection/notifier-error-inject.txt
index c83526c364e5..09adabef513f 100644
--- a/Documentation/fault-injection/notifier-error-inject.txt
+++ b/Documentation/fault-injection/notifier-error-inject.txt
@@ -1,7 +1,7 @@
1Notifier error injection 1Notifier error injection
2======================== 2========================
3 3
4Notifier error injection provides the ability to inject artifical errors to 4Notifier error injection provides the ability to inject artificial errors to
5specified notifier chain callbacks. It is useful to test the error handling of 5specified notifier chain callbacks. It is useful to test the error handling of
6notifier call chain failures which is rarely executed. There are kernel 6notifier call chain failures which is rarely executed. There are kernel
7modules that can be used to test the following notifiers. 7modules that can be used to test the following notifiers.
@@ -14,7 +14,7 @@ modules that can be used to test the following notifiers.
14CPU notifier error injection module 14CPU notifier error injection module
15----------------------------------- 15-----------------------------------
16This feature can be used to test the error handling of the CPU notifiers by 16This feature can be used to test the error handling of the CPU notifiers by
17injecting artifical errors to CPU notifier chain callbacks. 17injecting artificial errors to CPU notifier chain callbacks.
18 18
19If the notifier call chain should be failed with some events notified, write 19If the notifier call chain should be failed with some events notified, write
20the error code to debugfs interface 20the error code to debugfs interface
diff --git a/Documentation/hid/uhid.txt b/Documentation/hid/uhid.txt
index 4627c4241ece..3c741214dfbb 100644
--- a/Documentation/hid/uhid.txt
+++ b/Documentation/hid/uhid.txt
@@ -108,7 +108,7 @@ the request was handled successfully.
108 UHID_FEATURE_ANSWER: 108 UHID_FEATURE_ANSWER:
109 If you receive a UHID_FEATURE request you must answer with this request. You 109 If you receive a UHID_FEATURE request you must answer with this request. You
110 must copy the "id" field from the request into the answer. Set the "err" field 110 must copy the "id" field from the request into the answer. Set the "err" field
111 to 0 if no error occured or to EIO if an I/O error occurred. 111 to 0 if no error occurred or to EIO if an I/O error occurred.
112 If "err" is 0 then you should fill the buffer of the answer with the results 112 If "err" is 0 then you should fill the buffer of the answer with the results
113 of the feature request and set "size" correspondingly. 113 of the feature request and set "size" correspondingly.
114 114
diff --git a/Documentation/input/alps.txt b/Documentation/input/alps.txt
index ae8ba9a74ce1..3262b6e4d686 100644
--- a/Documentation/input/alps.txt
+++ b/Documentation/input/alps.txt
@@ -133,7 +133,7 @@ number of contacts (f1 and f0 in the table below).
133 133
134This packet only appears after a position packet with the mt bit set, and 134This packet only appears after a position packet with the mt bit set, and
135usually only appears when there are two or more contacts (although 135usually only appears when there are two or more contacts (although
136occassionally it's seen with only a single contact). 136occasionally it's seen with only a single contact).
137 137
138The final v3 packet type is the trackstick packet. 138The final v3 packet type is the trackstick packet.
139 139
diff --git a/Documentation/kbuild/modules.txt b/Documentation/kbuild/modules.txt
index 3fb39e0116b4..69372fb98cf8 100644
--- a/Documentation/kbuild/modules.txt
+++ b/Documentation/kbuild/modules.txt
@@ -470,7 +470,7 @@ build.
470 470
471 Sometimes, an external module uses exported symbols from 471 Sometimes, an external module uses exported symbols from
472 another external module. kbuild needs to have full knowledge of 472 another external module. kbuild needs to have full knowledge of
473 all symbols to avoid spitting out warnings about undefined 473 all symbols to avoid spliitting out warnings about undefined
474 symbols. Three solutions exist for this situation. 474 symbols. Three solutions exist for this situation.
475 475
476 NOTE: The method with a top-level kbuild file is recommended 476 NOTE: The method with a top-level kbuild file is recommended
diff --git a/Documentation/misc-devices/mei/mei-amt-version.c b/Documentation/misc-devices/mei/mei-amt-version.c
index 01804f216312..49e4f770864a 100644
--- a/Documentation/misc-devices/mei/mei-amt-version.c
+++ b/Documentation/misc-devices/mei/mei-amt-version.c
@@ -214,7 +214,7 @@ out:
214} 214}
215 215
216/*************************************************************************** 216/***************************************************************************
217 * Intel Advanced Management Technolgy ME Client 217 * Intel Advanced Management Technology ME Client
218 ***************************************************************************/ 218 ***************************************************************************/
219 219
220#define AMT_MAJOR_VERSION 1 220#define AMT_MAJOR_VERSION 1
@@ -256,7 +256,7 @@ struct amt_code_versions {
256} __attribute__((packed)); 256} __attribute__((packed));
257 257
258/*************************************************************************** 258/***************************************************************************
259 * Intel Advanced Management Technolgy Host Interface 259 * Intel Advanced Management Technology Host Interface
260 ***************************************************************************/ 260 ***************************************************************************/
261 261
262struct amt_host_if_msg_header { 262struct amt_host_if_msg_header {
diff --git a/Documentation/video4linux/bttv/Cards b/Documentation/video4linux/bttv/Cards
index db833ced2cb8..a8fb6e2d3c8b 100644
--- a/Documentation/video4linux/bttv/Cards
+++ b/Documentation/video4linux/bttv/Cards
@@ -43,7 +43,7 @@ Very nice card if you only have satellite TV but several tuners connected
43to the card via composite. 43to the card via composite.
44 44
45Many thanks to Matrix-Vision for giving us 2 cards for free which made 45Many thanks to Matrix-Vision for giving us 2 cards for free which made
46Bt848a/Bt849 single crytal operation support possible!!! 46Bt848a/Bt849 single crystal operation support possible!!!
47 47
48 48
49 49
diff --git a/Documentation/vm/frontswap.txt b/Documentation/vm/frontswap.txt
index 5ef2d1366425..c71a019be600 100644
--- a/Documentation/vm/frontswap.txt
+++ b/Documentation/vm/frontswap.txt
@@ -193,7 +193,7 @@ faster.
193 or maybe swap-over-nbd/NFS)? 193 or maybe swap-over-nbd/NFS)?
194 194
195No. First, the existing swap subsystem doesn't allow for any kind of 195No. First, the existing swap subsystem doesn't allow for any kind of
196swap hierarchy. Perhaps it could be rewritten to accomodate a hierarchy, 196swap hierarchy. Perhaps it could be rewritten to accommodate a hierarchy,
197but this would require fairly drastic changes. Even if it were 197but this would require fairly drastic changes. Even if it were
198rewritten, the existing swap subsystem uses the block I/O layer which 198rewritten, the existing swap subsystem uses the block I/O layer which
199assumes a swap device is fixed size and any page in it is linearly 199assumes a swap device is fixed size and any page in it is linearly