diff options
author | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-05-08 14:14:57 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-06-15 17:10:01 -0400 |
commit | 5fb94e9ca333f0fe1d96de06704a79942b3832c3 (patch) | |
tree | c7577c1ee04f2301299a10b42e32b3a6063fe6a6 /include/linux | |
parent | ec15872daa0ac3f5cbe7cb6f1734c493d74301ac (diff) |
docs: Fix some broken references
As we move stuff around, some doc references are broken. Fix some of
them via this script:
./scripts/documentation-file-ref-check --fix
Manually checked if the produced result is valid, removing a few
false-positives.
Acked-by: Takashi Iwai <tiwai@suse.de>
Acked-by: Masami Hiramatsu <mhiramat@kernel.org>
Acked-by: Stephen Boyd <sboyd@kernel.org>
Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Acked-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Reviewed-by: Coly Li <colyli@suse.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Acked-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/assoc_array.h | 2 | ||||
-rw-r--r-- | include/linux/assoc_array_priv.h | 2 | ||||
-rw-r--r-- | include/linux/circ_buf.h | 2 | ||||
-rw-r--r-- | include/linux/ftrace.h | 2 | ||||
-rw-r--r-- | include/linux/rculist_nulls.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/assoc_array.h b/include/linux/assoc_array.h index a89df3be1686..65e3832f96b2 100644 --- a/include/linux/assoc_array.h +++ b/include/linux/assoc_array.h | |||
@@ -1,6 +1,6 @@ | |||
1 | /* Generic associative array implementation. | 1 | /* Generic associative array implementation. |
2 | * | 2 | * |
3 | * See Documentation/assoc_array.txt for information. | 3 | * See Documentation/core-api/assoc_array.rst for information. |
4 | * | 4 | * |
5 | * Copyright (C) 2013 Red Hat, Inc. All Rights Reserved. | 5 | * Copyright (C) 2013 Red Hat, Inc. All Rights Reserved. |
6 | * Written by David Howells (dhowells@redhat.com) | 6 | * Written by David Howells (dhowells@redhat.com) |
diff --git a/include/linux/assoc_array_priv.h b/include/linux/assoc_array_priv.h index 711275e6681c..a00a06550c10 100644 --- a/include/linux/assoc_array_priv.h +++ b/include/linux/assoc_array_priv.h | |||
@@ -1,6 +1,6 @@ | |||
1 | /* Private definitions for the generic associative array implementation. | 1 | /* Private definitions for the generic associative array implementation. |
2 | * | 2 | * |
3 | * See Documentation/assoc_array.txt for information. | 3 | * See Documentation/core-api/assoc_array.rst for information. |
4 | * | 4 | * |
5 | * Copyright (C) 2013 Red Hat, Inc. All Rights Reserved. | 5 | * Copyright (C) 2013 Red Hat, Inc. All Rights Reserved. |
6 | * Written by David Howells (dhowells@redhat.com) | 6 | * Written by David Howells (dhowells@redhat.com) |
diff --git a/include/linux/circ_buf.h b/include/linux/circ_buf.h index 7cf262a421c3..b3233e8202f9 100644 --- a/include/linux/circ_buf.h +++ b/include/linux/circ_buf.h | |||
@@ -1,6 +1,6 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0 */ | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
2 | /* | 2 | /* |
3 | * See Documentation/circular-buffers.txt for more information. | 3 | * See Documentation/core-api/circular-buffers.rst for more information. |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #ifndef _LINUX_CIRC_BUF_H | 6 | #ifndef _LINUX_CIRC_BUF_H |
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h index 9c3c9a319e48..8154f4920fcb 100644 --- a/include/linux/ftrace.h +++ b/include/linux/ftrace.h | |||
@@ -1,7 +1,7 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0 */ | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
2 | /* | 2 | /* |
3 | * Ftrace header. For implementation details beyond the random comments | 3 | * Ftrace header. For implementation details beyond the random comments |
4 | * scattered below, see: Documentation/trace/ftrace-design.txt | 4 | * scattered below, see: Documentation/trace/ftrace-design.rst |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #ifndef _LINUX_FTRACE_H | 7 | #ifndef _LINUX_FTRACE_H |
diff --git a/include/linux/rculist_nulls.h b/include/linux/rculist_nulls.h index e4b257ff881b..bc8206a8f30e 100644 --- a/include/linux/rculist_nulls.h +++ b/include/linux/rculist_nulls.h | |||
@@ -109,7 +109,7 @@ static inline void hlist_nulls_add_head_rcu(struct hlist_nulls_node *n, | |||
109 | * | 109 | * |
110 | * The barrier() is needed to make sure compiler doesn't cache first element [1], | 110 | * The barrier() is needed to make sure compiler doesn't cache first element [1], |
111 | * as this loop can be restarted [2] | 111 | * as this loop can be restarted [2] |
112 | * [1] Documentation/atomic_ops.txt around line 114 | 112 | * [1] Documentation/core-api/atomic_ops.rst around line 114 |
113 | * [2] Documentation/RCU/rculist_nulls.txt around line 146 | 113 | * [2] Documentation/RCU/rculist_nulls.txt around line 146 |
114 | */ | 114 | */ |
115 | #define hlist_nulls_for_each_entry_rcu(tpos, pos, head, member) \ | 115 | #define hlist_nulls_for_each_entry_rcu(tpos, pos, head, member) \ |