* [PATCH] iio: dummy_evgen: remove Excess kernel-doc comments
@ 2024-01-21 5:50 Randy Dunlap
2024-01-22 9:04 ` Bartosz Golaszewski
0 siblings, 1 reply; 3+ messages in thread
From: Randy Dunlap @ 2024-01-21 5:50 UTC (permalink / raw)
To: linux-kernel
Cc: Randy Dunlap, Jonathan Cameron, Lars-Peter Clausen,
Bartosz Golaszewski, linux-iio
Drop kernel-doc comments for struct fields that were removed to
prevent kernel-doc warnings:
iio_dummy_evgen.c:43: warning: Excess struct member 'irq_sim' description in 'iio_dummy_eventgen'
iio_dummy_evgen.c:43: warning: Excess struct member 'base' description in 'iio_dummy_eventgen'
Fixes: 337cbeb2c13e ("genirq/irq_sim: Simplify the API")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Lars-Peter Clausen <lars@metafoo.de>
Cc: Bartosz Golaszewski <brgl@bgdev.pl>
Cc: linux-iio@vger.kernel.org
---
drivers/iio/dummy/iio_dummy_evgen.c | 2 --
1 file changed, 2 deletions(-)
diff -- a/drivers/iio/dummy/iio_dummy_evgen.c b/drivers/iio/dummy/iio_dummy_evgen.c
--- a/drivers/iio/dummy/iio_dummy_evgen.c
+++ b/drivers/iio/dummy/iio_dummy_evgen.c
@@ -31,8 +31,6 @@
* @regs: irq regs we are faking
* @lock: protect the evgen state
* @inuse: mask of which irqs are connected
- * @irq_sim: interrupt simulator
- * @base: base of irq range
* @irq_sim_domain: irq simulator domain
*/
struct iio_dummy_eventgen {
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] iio: dummy_evgen: remove Excess kernel-doc comments
2024-01-21 5:50 [PATCH] iio: dummy_evgen: remove Excess kernel-doc comments Randy Dunlap
@ 2024-01-22 9:04 ` Bartosz Golaszewski
2024-01-22 19:20 ` Jonathan Cameron
0 siblings, 1 reply; 3+ messages in thread
From: Bartosz Golaszewski @ 2024-01-22 9:04 UTC (permalink / raw)
To: Randy Dunlap
Cc: linux-kernel, Jonathan Cameron, Lars-Peter Clausen, linux-iio
On Sun, Jan 21, 2024 at 6:50 AM Randy Dunlap <rdunlap@infradead.org> wrote:
>
> Drop kernel-doc comments for struct fields that were removed to
> prevent kernel-doc warnings:
>
> iio_dummy_evgen.c:43: warning: Excess struct member 'irq_sim' description in 'iio_dummy_eventgen'
> iio_dummy_evgen.c:43: warning: Excess struct member 'base' description in 'iio_dummy_eventgen'
>
> Fixes: 337cbeb2c13e ("genirq/irq_sim: Simplify the API")
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: Jonathan Cameron <jic23@kernel.org>
> Cc: Lars-Peter Clausen <lars@metafoo.de>
> Cc: Bartosz Golaszewski <brgl@bgdev.pl>
> Cc: linux-iio@vger.kernel.org
> ---
> drivers/iio/dummy/iio_dummy_evgen.c | 2 --
> 1 file changed, 2 deletions(-)
>
> diff -- a/drivers/iio/dummy/iio_dummy_evgen.c b/drivers/iio/dummy/iio_dummy_evgen.c
> --- a/drivers/iio/dummy/iio_dummy_evgen.c
> +++ b/drivers/iio/dummy/iio_dummy_evgen.c
> @@ -31,8 +31,6 @@
> * @regs: irq regs we are faking
> * @lock: protect the evgen state
> * @inuse: mask of which irqs are connected
> - * @irq_sim: interrupt simulator
> - * @base: base of irq range
> * @irq_sim_domain: irq simulator domain
> */
> struct iio_dummy_eventgen {
Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] iio: dummy_evgen: remove Excess kernel-doc comments
2024-01-22 9:04 ` Bartosz Golaszewski
@ 2024-01-22 19:20 ` Jonathan Cameron
0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Cameron @ 2024-01-22 19:20 UTC (permalink / raw)
To: Bartosz Golaszewski
Cc: Randy Dunlap, linux-kernel, Lars-Peter Clausen, linux-iio
On Mon, 22 Jan 2024 10:04:48 +0100
Bartosz Golaszewski <brgl@bgdev.pl> wrote:
> On Sun, Jan 21, 2024 at 6:50 AM Randy Dunlap <rdunlap@infradead.org> wrote:
> >
> > Drop kernel-doc comments for struct fields that were removed to
> > prevent kernel-doc warnings:
> >
> > iio_dummy_evgen.c:43: warning: Excess struct member 'irq_sim' description in 'iio_dummy_eventgen'
> > iio_dummy_evgen.c:43: warning: Excess struct member 'base' description in 'iio_dummy_eventgen'
> >
> > Fixes: 337cbeb2c13e ("genirq/irq_sim: Simplify the API")
> > Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> > Cc: Jonathan Cameron <jic23@kernel.org>
> > Cc: Lars-Peter Clausen <lars@metafoo.de>
> > Cc: Bartosz Golaszewski <brgl@bgdev.pl>
> > Cc: linux-iio@vger.kernel.org
> > ---
> > drivers/iio/dummy/iio_dummy_evgen.c | 2 --
> > 1 file changed, 2 deletions(-)
> >
> > diff -- a/drivers/iio/dummy/iio_dummy_evgen.c b/drivers/iio/dummy/iio_dummy_evgen.c
> > --- a/drivers/iio/dummy/iio_dummy_evgen.c
> > +++ b/drivers/iio/dummy/iio_dummy_evgen.c
> > @@ -31,8 +31,6 @@
> > * @regs: irq regs we are faking
> > * @lock: protect the evgen state
> > * @inuse: mask of which irqs are connected
> > - * @irq_sim: interrupt simulator
> > - * @base: base of irq range
> > * @irq_sim_domain: irq simulator domain
> > */
> > struct iio_dummy_eventgen {
>
> Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Applied.
Thanks,
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-01-22 19:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-21 5:50 [PATCH] iio: dummy_evgen: remove Excess kernel-doc comments Randy Dunlap
2024-01-22 9:04 ` Bartosz Golaszewski
2024-01-22 19:20 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox