]> git.baikalelectronics.ru Git - kernel.git/commit
checkpatch: macros which define structure members are not complex
authorAndy Whitcroft <apw@shadowen.org>
Thu, 16 Oct 2008 05:02:31 +0000 (22:02 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 16 Oct 2008 18:21:37 +0000 (11:21 -0700)
commita9ff6455dbd6c48529941f5e4b0733dd156d5bf4
tree0032e6513e7ae5353357c0fbf605ecda6a9cf831
parent697f6ade6ea126baa6dcc060d06037a2d4e49b1e
checkpatch: macros which define structure members are not complex

We often see macros which define structure members, these are not complex
and necessarily do not have braces or brackets.  For example:

    #define _PLIST_HEAD_INIT(head)                      \
        .prio_list = LIST_HEAD_INIT((head).prio_list),  \
        .node_list = LIST_HEAD_INIT((head).node_list)

Signed-off-by: Andy Whitcroft <apw@shadowen.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
scripts/checkpatch.pl