提交 52131292 编写于 作者: W Wolfram Sang 提交者: Linus Torvalds

checkpatch: fix false positive on __initconst

checkpatch falsely complained about '__initconst' because it thought the
'const' needed a space before.  Fix this by changing the list of
attributes:

- add '__initconst'
- force plain 'init' to contain a word-boundary at the end
Signed-off-by: NWolfram Sang <w.sang@pengutronix.de>
Cc: Andy Whitcroft <apw@shadowen.org>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 691e669b
...@@ -145,11 +145,14 @@ our $Sparse = qr{ ...@@ -145,11 +145,14 @@ our $Sparse = qr{
__kprobes| __kprobes|
__ref __ref
}x; }x;
# Notes to $Attribute:
# We need \b after 'init' otherwise 'initconst' will cause a false positive in a check
our $Attribute = qr{ our $Attribute = qr{
const| const|
__read_mostly| __read_mostly|
__kprobes| __kprobes|
__(?:mem|cpu|dev|)(?:initdata|init)| __(?:mem|cpu|dev|)(?:initdata|initconst|init\b)|
____cacheline_aligned| ____cacheline_aligned|
____cacheline_aligned_in_smp| ____cacheline_aligned_in_smp|
____cacheline_internodealigned_in_smp| ____cacheline_internodealigned_in_smp|
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册