summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCédric Le Goater <clg@fr.ibm.com>2016-04-01 11:40:06 +0200
committerTimothy Pearson <tpearson@raptorengineering.com>2019-11-29 20:01:35 -0600
commitc380f07dfe70d408c13e15a8cc83e7b3e152defe (patch)
tree427ca429bf8f12dcb0c0d3091426f5ece94e9f31
parentcc8b76f8b68c531ab70de09bb5806c9e23865b48 (diff)
downloadhqemu-c380f07dfe70d408c13e15a8cc83e7b3e152defe.zip
hqemu-c380f07dfe70d408c13e15a8cc83e7b3e152defe.tar.gz
checkpatch: add target_ulong to typelist
In some occasions, a patch [1] can start with a hunk containing a simple type cast. At the time annotate_values() is run, the type is unknown and the cast type is misinterpreted as a identifier, resulting in an error if it is followed with a negative value: ERROR: spaces required around that '-' (ctx:WxV) It seems complex to catch all possible types in a cast expression. So, as a fallback solution, let's add some common qemu types to the typeList array. [1] http://lists.nongnu.org/archive/html/qemu-devel/2016-03/msg06741.html Signed-off-by: Cédric Le Goater <clg@fr.ibm.com> Message-Id: <1459503606-31603-1-git-send-email-clg@fr.ibm.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rwxr-xr-xscripts/checkpatch.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index c26f76e..c9554ba 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -212,6 +212,7 @@ our @typeList = (
qr{${Ident}_t},
qr{${Ident}_handler},
qr{${Ident}_handler_fn},
+ qr{target_(?:u)?long},
);
# This can be modified by sub possible. Since it can be empty, be careful
OpenPOWER on IntegriCloud