diff options
-rw-r--r-- | fs/file.c | 2 | ||||
-rw-r--r-- | lib/Kconfig.debug | 2 | ||||
-rw-r--r-- | samples/rpmsg/rpmsg_client_sample.c | 4 | ||||
-rwxr-xr-x | scripts/kernel-doc | 1 |
4 files changed, 4 insertions, 5 deletions
@@ -490,7 +490,7 @@ void exit_files(struct task_struct *tsk) | |||
490 | } | 490 | } |
491 | } | 491 | } |
492 | 492 | ||
493 | static void __devinit fdtable_defer_list_init(int cpu) | 493 | static void fdtable_defer_list_init(int cpu) |
494 | { | 494 | { |
495 | struct fdtable_defer *fddef = &per_cpu(fdtable_defer_list, cpu); | 495 | struct fdtable_defer *fddef = &per_cpu(fdtable_defer_list, cpu); |
496 | spin_lock_init(&fddef->lock); | 496 | spin_lock_init(&fddef->lock); |
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 3a353091a903..67604e599384 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug | |||
@@ -134,7 +134,7 @@ config DEBUG_SECTION_MISMATCH | |||
134 | any use of code/data previously in these sections would | 134 | any use of code/data previously in these sections would |
135 | most likely result in an oops. | 135 | most likely result in an oops. |
136 | In the code, functions and variables are annotated with | 136 | In the code, functions and variables are annotated with |
137 | __init, __devinit, etc. (see the full list in include/linux/init.h), | 137 | __init, __cpuinit, etc. (see the full list in include/linux/init.h), |
138 | which results in the code/data being placed in specific sections. | 138 | which results in the code/data being placed in specific sections. |
139 | The section mismatch analysis is always performed after a full | 139 | The section mismatch analysis is always performed after a full |
140 | kernel build, and enabling this option causes the following | 140 | kernel build, and enabling this option causes the following |
diff --git a/samples/rpmsg/rpmsg_client_sample.c b/samples/rpmsg/rpmsg_client_sample.c index 23ea9f2ae11d..59b13440813d 100644 --- a/samples/rpmsg/rpmsg_client_sample.c +++ b/samples/rpmsg/rpmsg_client_sample.c | |||
@@ -64,7 +64,7 @@ static int rpmsg_sample_probe(struct rpmsg_channel *rpdev) | |||
64 | return 0; | 64 | return 0; |
65 | } | 65 | } |
66 | 66 | ||
67 | static void __devexit rpmsg_sample_remove(struct rpmsg_channel *rpdev) | 67 | static void rpmsg_sample_remove(struct rpmsg_channel *rpdev) |
68 | { | 68 | { |
69 | dev_info(&rpdev->dev, "rpmsg sample client driver is removed\n"); | 69 | dev_info(&rpdev->dev, "rpmsg sample client driver is removed\n"); |
70 | } | 70 | } |
@@ -81,7 +81,7 @@ static struct rpmsg_driver rpmsg_sample_client = { | |||
81 | .id_table = rpmsg_driver_sample_id_table, | 81 | .id_table = rpmsg_driver_sample_id_table, |
82 | .probe = rpmsg_sample_probe, | 82 | .probe = rpmsg_sample_probe, |
83 | .callback = rpmsg_sample_cb, | 83 | .callback = rpmsg_sample_cb, |
84 | .remove = __devexit_p(rpmsg_sample_remove), | 84 | .remove = rpmsg_sample_remove, |
85 | }; | 85 | }; |
86 | 86 | ||
87 | static int __init rpmsg_client_sample_init(void) | 87 | static int __init rpmsg_client_sample_init(void) |
diff --git a/scripts/kernel-doc b/scripts/kernel-doc index 28b761567815..f565536a2bef 100755 --- a/scripts/kernel-doc +++ b/scripts/kernel-doc | |||
@@ -2079,7 +2079,6 @@ sub dump_function($$) { | |||
2079 | $prototype =~ s/^__inline +//; | 2079 | $prototype =~ s/^__inline +//; |
2080 | $prototype =~ s/^__always_inline +//; | 2080 | $prototype =~ s/^__always_inline +//; |
2081 | $prototype =~ s/^noinline +//; | 2081 | $prototype =~ s/^noinline +//; |
2082 | $prototype =~ s/__devinit +//; | ||
2083 | $prototype =~ s/__init +//; | 2082 | $prototype =~ s/__init +//; |
2084 | $prototype =~ s/__init_or_module +//; | 2083 | $prototype =~ s/__init_or_module +//; |
2085 | $prototype =~ s/__must_check +//; | 2084 | $prototype =~ s/__must_check +//; |