Re: [PATCH] docs: kernel-doc: fix parsing of arrays

2018-03-29 Thread Jonathan Corbet
On Thu, 29 Mar 2018 10:58:59 -0400 Mauro Carvalho Chehab wrote: > The logic with parses array has a bug that prevents it to > parse arrays like: > struct { > ... > struct { > u64 msdu[IEEE80211_NUM_TIDS + 1]; >

[PATCH] docs: kernel-doc: fix parsing of arrays

2018-03-29 Thread Mauro Carvalho Chehab
The logic with parses array has a bug that prevents it to parse arrays like: struct { ... struct { u64 msdu[IEEE80211_NUM_TIDS + 1]; ... ... Fix the parser to accept it. Signed-off-by: Mauro Carvalho Chehab