qemu-trivial
[Top][All Lists]
Advanced

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

[Qemu-trivial] [PATCH v4 04/40] checkpatch: Recognize IEC binary prefix


From: Philippe Mathieu-Daudé
Subject: [Qemu-trivial] [PATCH v4 04/40] checkpatch: Recognize IEC binary prefix definitions
Date: Sun, 10 Jun 2018 22:14:25 -0300

This fixes:

    ERROR: "foo * bar" should be "foo *bar"
    #310: FILE: hw/ppc/ppc440_uc.c:564:
    +        size = 8 * MiB * sh;
    total: 1 errors, 0 warnings, 433 lines checked

Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
---
 scripts/checkpatch.pl | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index e3d8c2cdfc..4923674c71 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -322,6 +322,7 @@ sub build_types {
                                (?:${all}\b)
                        )
                        (?:\s+$Modifier|\s+const)*
+                       (?:[KMGTPE]iB)
                  }x;
        $Type   = qr{
                        $NonptrType
-- 
2.17.1




reply via email to

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