* + checkpatch-warn-on-declaration-with-storage-class-not-at-the-beginning.patch added to -mm tree
@ 2010-05-21 20:49 akpm
0 siblings, 0 replies; only message in thread
From: akpm @ 2010-05-21 20:49 UTC (permalink / raw)
To: mm-commits; +Cc: tklauser, apw, khali
The patch titled
checkpatch: warn on declaration with storage class not at the beginning
has been added to the -mm tree. Its filename is
checkpatch-warn-on-declaration-with-storage-class-not-at-the-beginning.patch
Before you just go and hit "reply", please:
a) Consider who else should be cc'ed
b) Prefer to cc a suitable mailing list as well
c) Ideally: find the original patch on the mailing list and do a
reply-to-all to that, adding suitable additional cc's
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find
out what to do about this
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: checkpatch: warn on declaration with storage class not at the beginning
From: Tobias Klauser <tklauser@distanz.ch>
The C99 specification states in section 6.11.5:
The placement of a storage-class specifier other than at the beginning
of the declaration specifiers in a declaration is an obsolescent
feature.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Acked-by: Jean Delvare <khali@linux-fr.org>
Cc: Andy Whitcroft <apw@shadowen.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
scripts/checkpatch.pl | 5 +++++
1 file changed, 5 insertions(+)
diff -puN scripts/checkpatch.pl~checkpatch-warn-on-declaration-with-storage-class-not-at-the-beginning scripts/checkpatch.pl
--- a/scripts/checkpatch.pl~checkpatch-warn-on-declaration-with-storage-class-not-at-the-beginning
+++ a/scripts/checkpatch.pl
@@ -2601,6 +2601,11 @@ sub process {
CHK("architecture specific defines should be avoided\n" . $herecurr);
}
+# Check that the storage class is at the beginning of a declaration
+ if ($line =~ /\b$Storage\b/ && $line !~ /^.\s*$Storage\b/) {
+ WARN("storage class should be at the beginning of the declaration\n" . $herecurr)
+ }
+
# check the location of the inline attribute, that it is between
# storage class and type.
if ($line =~ /\b$Type\s+$Inline\b/ ||
_
Patches currently in -mm which might be from tklauser@distanz.ch are
origin.patch
linux-next.patch
checkpatch-warn-on-declaration-with-storage-class-not-at-the-beginning.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2010-05-21 20:49 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-21 20:49 + checkpatch-warn-on-declaration-with-storage-class-not-at-the-beginning.patch added to -mm tree akpm
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox