qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] checkpatch.pl: add common glib defines to typelist


From: Peter Xu
Subject: [Qemu-devel] [PATCH] checkpatch.pl: add common glib defines to typelist
Date: Wed, 25 Apr 2018 13:40:46 +0800

Otherwise it can warn this:

  ERROR: space prohibited between function name and open parenthesis '('

When with things like this:

  typedef gboolean (*it_tree_iterator)(ITValue start, ITValue end);

CC: Paolo Bonzini <address@hidden>
CC: Stefan Hajnoczi <address@hidden>
CC: "Daniel P. Berrangé" <address@hidden>
CC: Markus Armbruster <address@hidden>
CC: Vladimir Sementsov-Ogievskiy <address@hidden>
CC: Fam Zheng <address@hidden>
Signed-off-by: Peter Xu <address@hidden>
---
 scripts/checkpatch.pl | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index d52207a3cc..6c25449cd3 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -266,6 +266,20 @@ our @typeList = (
        qr{target_(?:u)?long},
        qr{hwaddr},
        qr{xml${Ident}},
+       # Glib definitions
+       qr{gchar},
+       qr{gshort},
+       qr{glong},
+       qr{gint},
+       qr{gboolean},
+       qr{guchar},
+       qr{gushort},
+       qr{gulong},
+       qr{guint},
+       qr{gfloat},
+       qr{gdouble},
+       qr{gpointer},
+       qr{gconstpointer},
 );
 
 # This can be modified by sub possible.  Since it can be empty, be careful
-- 
2.14.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]