scripts/kernel-doc: handle struct member __aligned
authorRandy Dunlap <[email protected]>
Tue, 23 Mar 2010 20:35:14 +0000 (13:35 -0700)
committerLinus Torvalds <[email protected]>
Wed, 24 Mar 2010 23:31:19 +0000 (16:31 -0700)
commitef5da59f12602815baa8fad98241b77dedea3b31
tree2a53455ebd567183670eeaf5cc913a460ba1bf34
parent05731b979476969d4d1cbbcb535fc0f5ea90dba7
scripts/kernel-doc: handle struct member __aligned

scripts/kernel-doc erroneously says:

Warning(include/linux/skbuff.h:410): Excess struct/union/enum/typedef member 'cb' description in 'sk_buff'

on this line in struct sk_buff:
char cb[48] __aligned(8);

due to treating the last field as the struct member name, so teach
kernel-doc to ignore __aligned(x) in structs.

Signed-off-by: Randy Dunlap <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
scripts/kernel-doc