Re: [PATCH] kernel-doc: handle spaces in array size

2007-04-06 Thread Jan Engelhardt
On Apr 6 2007 16:03, Randy Dunlap wrote: >On Fri, 6 Apr 2007 21:24:48 +0200 (MEST) Jan Engelhardt wrote: > >> On Apr 6 2007 11:47, Randy Dunlap wrote: >> > >> >Unfortunately, kernel-doc has problems with a struct field like this: >> >uint8_t databuf[NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE]; >> >

Re: [PATCH] kernel-doc: handle spaces in array size

2007-04-06 Thread Randy Dunlap
On Fri, 6 Apr 2007 21:24:48 +0200 (MEST) Jan Engelhardt wrote: > On Apr 6 2007 11:47, Randy Dunlap wrote: > > > >Unfortunately, kernel-doc has problems with a struct field like this: > > uint8_t databuf[NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE]; > > > >simply due to the spaces around the "+" sign,

Re: [PATCH] kernel-doc: handle spaces in array size

2007-04-06 Thread Jan Engelhardt
On Apr 6 2007 11:47, Randy Dunlap wrote: > >Unfortunately, kernel-doc has problems with a struct field like this: > uint8_t databuf[NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE]; > >simply due to the spaces around the "+" sign, so drop all spaces inside >[...] so that parsing is done correctly (in s

[PATCH] kernel-doc: handle spaces in array size

2007-04-06 Thread Randy Dunlap
From: Randy Dunlap <[EMAIL PROTECTED]> Unfortunately, kernel-doc has problems with a struct field like this: uint8_t databuf[NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE]; simply due to the spaces around the "+" sign, so drop all spaces inside [...] so that parsing is done correctly (in some sens