diff options
| author | Jeff Cody <jcody@redhat.com> | 2016-11-01 10:38:35 -0400 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-11-02 09:28:56 +0100 |
| commit | 000980cb8307afe0578368cee8f31018905bb036 (patch) | |
| tree | 377f29a17bbdb258845b2479a1b1a59bdd1907fb /scripts/checkpatch.pl | |
| parent | 95ea69fb46266aaa46d0c8b7f0ba8c4903dbe4e3 (diff) | |
| download | focaccia-qemu-000980cb8307afe0578368cee8f31018905bb036.tar.gz focaccia-qemu-000980cb8307afe0578368cee8f31018905bb036.zip | |
checkpatch: allow spaces before parenthesis for 'coroutine_fn'
Signed-off-by: Jeff Cody <jcody@redhat.com> Message-Id: <83b0fae0728906e18849c971d22d077d7fc0f179.1478010883.git.jcody@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'scripts/checkpatch.pl')
| -rwxr-xr-x | scripts/checkpatch.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 1f1c9d3498..f084542934 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -1754,7 +1754,7 @@ sub process { # Ignore those directives where spaces _are_ permitted. if ($name =~ /^(?: if|for|while|switch|return|case| - volatile|__volatile__| + volatile|__volatile__|coroutine_fn| __attribute__|format|__extension__| asm|__asm__)$/x) { |