]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
checkpatch: catch all occurances of type and cast spacing errors per line
authorAndy Whitcroft <apw@canonical.com>
Thu, 8 Dec 2011 04:42:25 +0000 (15:42 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Tue, 13 Dec 2011 06:43:21 +0000 (17:43 +1100)
commit089e9a47649d0f614c99992f1400114f60e6fd57
tree86e9b985e3821e1e88af653ab78861dd326618c1
parent40d4b3bacc48958d4b939a221395ee84685e5970
checkpatch: catch all occurances of type and cast spacing errors per line

Fix up type and cast spacing checks such that all occurances on a line are
examined and reported.  For example the line below has a valid cast and a
bad type, but currently we check the cast first which is good and stop:

    u16* bar = (u16 *)baz;

We will also only report one of the errors in this example:

    u16* bar = (u16*)bad;

Move to iterating across all casts and all types, reporting any failure.

Signed-off-by: Andy Whitcroft <apw@canonical.com>
Cc: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
scripts/checkpatch.pl