Re: Doc style for method functions

2023-08-21 Thread Heinrich Schuchardt
On 18.08.23 16:59, Simon Glass wrote: Hi Heinrich, On Thu, 17 Aug 2023 at 10:36, Heinrich Schuchardt wrote: On 16.08.23 19:47, Simon Glass wrote: Hi Jonathan, On Wed, 16 Aug 2023 at 11:15, Jonathan Corbet wrote: Simon Glass writes: Hi Jonathan, I would like to do something like this:

Re: Doc style for method functions

2023-08-18 Thread Simon Glass
Hi Heinrich, On Thu, 17 Aug 2023 at 10:36, Heinrich Schuchardt wrote: > > On 16.08.23 19:47, Simon Glass wrote: > > Hi Jonathan, > > > > On Wed, 16 Aug 2023 at 11:15, Jonathan Corbet wrote: > >> > >> Simon Glass writes: > >> > >>> Hi Jonathan, > >>> > >>> I would like to do something like this:

Re: Doc style for method functions

2023-08-17 Thread Heinrich Schuchardt
On 16.08.23 19:47, Simon Glass wrote: Hi Jonathan, On Wed, 16 Aug 2023 at 11:15, Jonathan Corbet wrote: Simon Glass writes: Hi Jonathan, I would like to do something like this: struct part_driver { /** * get_info() - Get information about a partition ^ causes err

Re: Doc style for method functions

2023-08-17 Thread Jonathan Corbet
Simon Glass writes: > Hi Jonathan, > > I would like to do something like this: > > struct part_driver { >/** > * get_info() - Get information about a partition > > ^ causes error > > * > * @desc: Block device descriptor > * @part: Partition number (1 = first) >

Re: Doc style for method functions

2023-08-16 Thread Simon Glass
Hi Jonathan, On Wed, 16 Aug 2023 at 11:15, Jonathan Corbet wrote: > > Simon Glass writes: > > > Hi Jonathan, > > > > I would like to do something like this: > > > > struct part_driver { > >/** > > * get_info() - Get information about a partition > > > > ^ causes error > > >

Doc style for method functions

2023-08-16 Thread Simon Glass
Hi Jonathan, I would like to do something like this: struct part_driver { /** * get_info() - Get information about a partition ^ causes error * * @desc: Block device descriptor * @part: Partition number (1 = first) * @info: Returns partition information