diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-05-11 14:29:52 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-05-11 14:29:52 -0400 |
commit | 09d79d103371b1b7ea70ea7f9c05ac207ef22f5d (patch) | |
tree | 16cdee5f647b198b7de8712cc6f14dd87d5273e5 | |
parent | e47b40a235e9552bc48e4c73c53854ce734da661 (diff) | |
parent | 25a0da73f24c95d57381bedd9cd89e4929b1bfde (diff) |
Merge tag 'docs-4.12-2' of git://git.lwn.net/linux
Pull more documentation updates from Jonathan Corbet:
"Connect the newly RST-formatted documentation to the rest; this had to
wait until the input pull was done. There's also a few small fixes
that wandered in"
* tag 'docs-4.12-2' of git://git.lwn.net/linux:
doc: replace FTP URL to kernel.org with HTTPS one
docs: update references to the device io book
Documentation: earlycon: fix Marvell Armada 3700 UART name
docs-rst: add input docs at main index and use kernel-figure
-rw-r--r-- | Documentation/admin-guide/README.rst | 2 | ||||
-rw-r--r-- | Documentation/admin-guide/kernel-parameters.txt | 2 | ||||
-rw-r--r-- | Documentation/index.rst | 1 | ||||
-rw-r--r-- | Documentation/input/ff.rst | 4 | ||||
-rw-r--r-- | Documentation/memory-barriers.txt | 4 | ||||
-rw-r--r-- | Documentation/translations/ko_KR/memory-barriers.txt | 4 |
6 files changed, 9 insertions, 8 deletions
diff --git a/Documentation/admin-guide/README.rst b/Documentation/admin-guide/README.rst index 02f639aab06e..b96e80f79e85 100644 --- a/Documentation/admin-guide/README.rst +++ b/Documentation/admin-guide/README.rst | |||
@@ -362,7 +362,7 @@ If something goes wrong | |||
362 | as is, otherwise you will have to use the ``ksymoops`` program to make | 362 | as is, otherwise you will have to use the ``ksymoops`` program to make |
363 | sense of the dump (but compiling with CONFIG_KALLSYMS is usually preferred). | 363 | sense of the dump (but compiling with CONFIG_KALLSYMS is usually preferred). |
364 | This utility can be downloaded from | 364 | This utility can be downloaded from |
365 | ftp://ftp.<country>.kernel.org/pub/linux/utils/kernel/ksymoops/ . | 365 | https://www.kernel.org/pub/linux/utils/kernel/ksymoops/ . |
366 | Alternatively, you can do the dump lookup by hand: | 366 | Alternatively, you can do the dump lookup by hand: |
367 | 367 | ||
368 | - In debugging dumps like the above, it helps enormously if you can | 368 | - In debugging dumps like the above, it helps enormously if you can |
diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt index 238bd211f365..15f79c27748d 100644 --- a/Documentation/admin-guide/kernel-parameters.txt +++ b/Documentation/admin-guide/kernel-parameters.txt | |||
@@ -972,7 +972,7 @@ | |||
972 | A valid base address must be provided, and the serial | 972 | A valid base address must be provided, and the serial |
973 | port must already be setup and configured. | 973 | port must already be setup and configured. |
974 | 974 | ||
975 | armada3700_uart,<addr> | 975 | ar3700_uart,<addr> |
976 | Start an early, polled-mode console on the | 976 | Start an early, polled-mode console on the |
977 | Armada 3700 serial port at the specified | 977 | Armada 3700 serial port at the specified |
978 | address. The serial port must already be setup | 978 | address. The serial port must already be setup |
diff --git a/Documentation/index.rst b/Documentation/index.rst index 61306a22888d..bc67dbf76eb0 100644 --- a/Documentation/index.rst +++ b/Documentation/index.rst | |||
@@ -67,6 +67,7 @@ needed). | |||
67 | driver-api/index | 67 | driver-api/index |
68 | core-api/index | 68 | core-api/index |
69 | media/index | 69 | media/index |
70 | input/index | ||
70 | gpu/index | 71 | gpu/index |
71 | security/index | 72 | security/index |
72 | sound/index | 73 | sound/index |
diff --git a/Documentation/input/ff.rst b/Documentation/input/ff.rst index 6a265a6934e6..26d461998e08 100644 --- a/Documentation/input/ff.rst +++ b/Documentation/input/ff.rst | |||
@@ -130,11 +130,11 @@ See <uapi/linux/input.h> for a description of the ff_effect struct. You | |||
130 | should also find help in a few sketches, contained in files shape.svg | 130 | should also find help in a few sketches, contained in files shape.svg |
131 | and interactive.svg: | 131 | and interactive.svg: |
132 | 132 | ||
133 | .. figure:: shape.svg | 133 | .. kernel-figure:: shape.svg |
134 | 134 | ||
135 | Shape | 135 | Shape |
136 | 136 | ||
137 | .. figure:: interactive.svg | 137 | .. kernel-figure:: interactive.svg |
138 | 138 | ||
139 | Interactive | 139 | Interactive |
140 | 140 | ||
diff --git a/Documentation/memory-barriers.txt b/Documentation/memory-barriers.txt index 08329cb857ed..732f10ea382e 100644 --- a/Documentation/memory-barriers.txt +++ b/Documentation/memory-barriers.txt | |||
@@ -2373,7 +2373,7 @@ is performed: | |||
2373 | spin_unlock(Q); | 2373 | spin_unlock(Q); |
2374 | 2374 | ||
2375 | 2375 | ||
2376 | See Documentation/DocBook/deviceiobook.tmpl for more information. | 2376 | See Documentation/driver-api/device-io.rst for more information. |
2377 | 2377 | ||
2378 | 2378 | ||
2379 | ================================= | 2379 | ================================= |
@@ -2614,7 +2614,7 @@ might be needed: | |||
2614 | relaxed memory access properties, then _mandatory_ memory barriers are | 2614 | relaxed memory access properties, then _mandatory_ memory barriers are |
2615 | required to enforce ordering. | 2615 | required to enforce ordering. |
2616 | 2616 | ||
2617 | See Documentation/DocBook/deviceiobook.tmpl for more information. | 2617 | See Documentation/driver-api/device-io.rst for more information. |
2618 | 2618 | ||
2619 | 2619 | ||
2620 | INTERRUPTS | 2620 | INTERRUPTS |
diff --git a/Documentation/translations/ko_KR/memory-barriers.txt b/Documentation/translations/ko_KR/memory-barriers.txt index ce0b48d69eaa..d05d4c54e8f7 100644 --- a/Documentation/translations/ko_KR/memory-barriers.txt +++ b/Documentation/translations/ko_KR/memory-barriers.txt | |||
@@ -2343,7 +2343,7 @@ ACQUIRE VS I/O 액세스 | |||
2343 | spin_unlock(Q); | 2343 | spin_unlock(Q); |
2344 | 2344 | ||
2345 | 2345 | ||
2346 | 더 많은 정보를 위해선 Documenataion/DocBook/deviceiobook.tmpl 을 참고하세요. | 2346 | 더 많은 정보를 위해선 Documentation/driver-api/device-io.rst 를 참고하세요. |
2347 | 2347 | ||
2348 | 2348 | ||
2349 | ========================= | 2349 | ========================= |
@@ -2578,7 +2578,7 @@ CPU 에서는 사용되는 어토믹 인스트럭션 자체에 메모리 배리 | |||
2578 | (2) 만약 액세스 함수들이 완화된 메모리 액세스 속성을 갖는 I/O 메모리 윈도우를 | 2578 | (2) 만약 액세스 함수들이 완화된 메모리 액세스 속성을 갖는 I/O 메모리 윈도우를 |
2579 | 사용한다면, 순서를 강제하기 위해선 _mandatory_ 메모리 배리어가 필요합니다. | 2579 | 사용한다면, 순서를 강제하기 위해선 _mandatory_ 메모리 배리어가 필요합니다. |
2580 | 2580 | ||
2581 | 더 많은 정보를 위해선 Documentation/DocBook/deviceiobook.tmpl 을 참고하십시오. | 2581 | 더 많은 정보를 위해선 Documentation/driver-api/device-io.rst 를 참고하십시오. |
2582 | 2582 | ||
2583 | 2583 | ||
2584 | 인터럽트 | 2584 | 인터럽트 |