linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/3] watchdog: twl4030_wdt: add missing mod_devicetable.h include
@ 2022-09-27 15:46 Dmitry Torokhov
  2022-09-27 15:46 ` [PATCH v2 2/3] mfd: twl4030-irq: add missing device.h include Dmitry Torokhov
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Dmitry Torokhov @ 2022-09-27 15:46 UTC (permalink / raw)
  To: Jonathan Cameron, Lee Jones, Wim Van Sebroeck, Guenter Roeck
  Cc: Lars-Peter Clausen, Tony Lindgren, Andy Shevchenko, linux-iio,
	linux-watchdog, linux-input, linux-kernel

The driver is using of_device_id and therefore needs to include
mod_devicetable.h header. We used to get this definition indirectly via
inclusion of matrix_keypad.h from twl.h, but we are cleaning up
matrix_keypad.h from unnecessary includes.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---

v2: changed from of.h to mod_devicetable.h per Andy Shevchenko

 drivers/watchdog/twl4030_wdt.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/watchdog/twl4030_wdt.c b/drivers/watchdog/twl4030_wdt.c
index 355e428c0b99..36b4a660928d 100644
--- a/drivers/watchdog/twl4030_wdt.c
+++ b/drivers/watchdog/twl4030_wdt.c
@@ -9,6 +9,7 @@
 #include <linux/types.h>
 #include <linux/slab.h>
 #include <linux/kernel.h>
+#include <linux/mod_devicetable.h>
 #include <linux/watchdog.h>
 #include <linux/platform_device.h>
 #include <linux/mfd/twl.h>
-- 
2.38.0.rc1.362.ged0d419d3c-goog


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH v2 2/3] mfd: twl4030-irq: add missing device.h include
  2022-09-27 15:46 [PATCH v2 1/3] watchdog: twl4030_wdt: add missing mod_devicetable.h include Dmitry Torokhov
@ 2022-09-27 15:46 ` Dmitry Torokhov
  2022-09-28 15:14   ` Lee Jones
  2022-09-27 15:46 ` [PATCH v2 3/3] iio: adc: twl4030-madc: add missing of.h include Dmitry Torokhov
  2022-09-28  1:11 ` [PATCH v2 1/3] watchdog: twl4030_wdt: add missing mod_devicetable.h include Guenter Roeck
  2 siblings, 1 reply; 11+ messages in thread
From: Dmitry Torokhov @ 2022-09-27 15:46 UTC (permalink / raw)
  To: Jonathan Cameron, Lee Jones, Wim Van Sebroeck, Guenter Roeck
  Cc: Lars-Peter Clausen, Tony Lindgren, Andy Shevchenko, linux-iio,
	linux-watchdog, linux-input, linux-kernel

The driver is using "struct device" and therefore needs to include
device.h header. We used to get this definition indirectly via inclusion
of matrix_keypad.h from twl.h, but we are cleaning up matrix_keypad.h
from unnecessary includes.

Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---

v2: added Andy's reviewed-by

 drivers/mfd/twl4030-irq.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mfd/twl4030-irq.c b/drivers/mfd/twl4030-irq.c
index 4f576f0160a9..87496c1cb8bc 100644
--- a/drivers/mfd/twl4030-irq.c
+++ b/drivers/mfd/twl4030-irq.c
@@ -14,6 +14,7 @@
  * by syed khasim <x0khasim@ti.com>
  */
 
+#include <linux/device.h>
 #include <linux/export.h>
 #include <linux/interrupt.h>
 #include <linux/irq.h>
-- 
2.38.0.rc1.362.ged0d419d3c-goog


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH v2 3/3] iio: adc: twl4030-madc: add missing of.h include
  2022-09-27 15:46 [PATCH v2 1/3] watchdog: twl4030_wdt: add missing mod_devicetable.h include Dmitry Torokhov
  2022-09-27 15:46 ` [PATCH v2 2/3] mfd: twl4030-irq: add missing device.h include Dmitry Torokhov
@ 2022-09-27 15:46 ` Dmitry Torokhov
  2022-09-27 16:20   ` Andy Shevchenko
  2022-09-27 16:20   ` Andy Shevchenko
  2022-09-28  1:11 ` [PATCH v2 1/3] watchdog: twl4030_wdt: add missing mod_devicetable.h include Guenter Roeck
  2 siblings, 2 replies; 11+ messages in thread
From: Dmitry Torokhov @ 2022-09-27 15:46 UTC (permalink / raw)
  To: Jonathan Cameron, Lee Jones, Wim Van Sebroeck, Guenter Roeck
  Cc: Lars-Peter Clausen, Tony Lindgren, Andy Shevchenko, linux-iio,
	linux-watchdog, linux-input, linux-kernel

The driver is using of_device_id/of_match_ptr() and therefore needs
to include of.h header. We used to get this definition indirectly via
inclusion of matrix_keypad.h from twl.h, but we are cleaning up
matrix_keypad.h from unnecessary includes.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---

v2: adjusted patch description

 drivers/iio/adc/twl4030-madc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/iio/adc/twl4030-madc.c b/drivers/iio/adc/twl4030-madc.c
index f8f8aea15612..c279c4f2c9b7 100644
--- a/drivers/iio/adc/twl4030-madc.c
+++ b/drivers/iio/adc/twl4030-madc.c
@@ -30,6 +30,7 @@
 #include <linux/types.h>
 #include <linux/gfp.h>
 #include <linux/err.h>
+#include <linux/of.h>
 #include <linux/regulator/consumer.h>
 
 #include <linux/iio/iio.h>
-- 
2.38.0.rc1.362.ged0d419d3c-goog


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH v2 3/3] iio: adc: twl4030-madc: add missing of.h include
  2022-09-27 15:46 ` [PATCH v2 3/3] iio: adc: twl4030-madc: add missing of.h include Dmitry Torokhov
@ 2022-09-27 16:20   ` Andy Shevchenko
  2022-10-01 17:07     ` Jonathan Cameron
  2022-09-27 16:20   ` Andy Shevchenko
  1 sibling, 1 reply; 11+ messages in thread
From: Andy Shevchenko @ 2022-09-27 16:20 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Jonathan Cameron, Lee Jones, Wim Van Sebroeck, Guenter Roeck,
	Lars-Peter Clausen, Tony Lindgren, linux-iio, linux-watchdog,
	linux-input, linux-kernel

On Tue, Sep 27, 2022 at 08:46:11AM -0700, Dmitry Torokhov wrote:
> The driver is using of_device_id/of_match_ptr() and therefore needs
> to include of.h header. We used to get this definition indirectly via
> inclusion of matrix_keypad.h from twl.h, but we are cleaning up
> matrix_keypad.h from unnecessary includes.

Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> ---
> 
> v2: adjusted patch description
> 
>  drivers/iio/adc/twl4030-madc.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/iio/adc/twl4030-madc.c b/drivers/iio/adc/twl4030-madc.c
> index f8f8aea15612..c279c4f2c9b7 100644
> --- a/drivers/iio/adc/twl4030-madc.c
> +++ b/drivers/iio/adc/twl4030-madc.c
> @@ -30,6 +30,7 @@
>  #include <linux/types.h>
>  #include <linux/gfp.h>
>  #include <linux/err.h>
> +#include <linux/of.h>
>  #include <linux/regulator/consumer.h>
>  
>  #include <linux/iio/iio.h>
> -- 
> 2.38.0.rc1.362.ged0d419d3c-goog
> 

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2 3/3] iio: adc: twl4030-madc: add missing of.h include
  2022-09-27 15:46 ` [PATCH v2 3/3] iio: adc: twl4030-madc: add missing of.h include Dmitry Torokhov
  2022-09-27 16:20   ` Andy Shevchenko
@ 2022-09-27 16:20   ` Andy Shevchenko
  1 sibling, 0 replies; 11+ messages in thread
From: Andy Shevchenko @ 2022-09-27 16:20 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Jonathan Cameron, Lee Jones, Wim Van Sebroeck, Guenter Roeck,
	Lars-Peter Clausen, Tony Lindgren, linux-iio, linux-watchdog,
	linux-input, linux-kernel

On Tue, Sep 27, 2022 at 08:46:11AM -0700, Dmitry Torokhov wrote:
> The driver is using of_device_id/of_match_ptr() and therefore needs
> to include of.h header. We used to get this definition indirectly via
> inclusion of matrix_keypad.h from twl.h, but we are cleaning up
> matrix_keypad.h from unnecessary includes.

Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> ---
> 
> v2: adjusted patch description
> 
>  drivers/iio/adc/twl4030-madc.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/iio/adc/twl4030-madc.c b/drivers/iio/adc/twl4030-madc.c
> index f8f8aea15612..c279c4f2c9b7 100644
> --- a/drivers/iio/adc/twl4030-madc.c
> +++ b/drivers/iio/adc/twl4030-madc.c
> @@ -30,6 +30,7 @@
>  #include <linux/types.h>
>  #include <linux/gfp.h>
>  #include <linux/err.h>
> +#include <linux/of.h>
>  #include <linux/regulator/consumer.h>
>  
>  #include <linux/iio/iio.h>
> -- 
> 2.38.0.rc1.362.ged0d419d3c-goog
> 

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2 1/3] watchdog: twl4030_wdt: add missing mod_devicetable.h include
  2022-09-27 15:46 [PATCH v2 1/3] watchdog: twl4030_wdt: add missing mod_devicetable.h include Dmitry Torokhov
  2022-09-27 15:46 ` [PATCH v2 2/3] mfd: twl4030-irq: add missing device.h include Dmitry Torokhov
  2022-09-27 15:46 ` [PATCH v2 3/3] iio: adc: twl4030-madc: add missing of.h include Dmitry Torokhov
@ 2022-09-28  1:11 ` Guenter Roeck
  2 siblings, 0 replies; 11+ messages in thread
From: Guenter Roeck @ 2022-09-28  1:11 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Jonathan Cameron, Lee Jones, Wim Van Sebroeck,
	Lars-Peter Clausen, Tony Lindgren, Andy Shevchenko, linux-iio,
	linux-watchdog, linux-input, linux-kernel

On Tue, Sep 27, 2022 at 08:46:09AM -0700, Dmitry Torokhov wrote:
> The driver is using of_device_id and therefore needs to include
> mod_devicetable.h header. We used to get this definition indirectly via
> inclusion of matrix_keypad.h from twl.h, but we are cleaning up
> matrix_keypad.h from unnecessary includes.
> 
> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

Reviewed-by: Guenter Roeck <linux@roeck-us.net>

> ---
> 
> v2: changed from of.h to mod_devicetable.h per Andy Shevchenko
> 
>  drivers/watchdog/twl4030_wdt.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/watchdog/twl4030_wdt.c b/drivers/watchdog/twl4030_wdt.c
> index 355e428c0b99..36b4a660928d 100644
> --- a/drivers/watchdog/twl4030_wdt.c
> +++ b/drivers/watchdog/twl4030_wdt.c
> @@ -9,6 +9,7 @@
>  #include <linux/types.h>
>  #include <linux/slab.h>
>  #include <linux/kernel.h>
> +#include <linux/mod_devicetable.h>
>  #include <linux/watchdog.h>
>  #include <linux/platform_device.h>
>  #include <linux/mfd/twl.h>
> -- 
> 2.38.0.rc1.362.ged0d419d3c-goog
> 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2 2/3] mfd: twl4030-irq: add missing device.h include
  2022-09-27 15:46 ` [PATCH v2 2/3] mfd: twl4030-irq: add missing device.h include Dmitry Torokhov
@ 2022-09-28 15:14   ` Lee Jones
  0 siblings, 0 replies; 11+ messages in thread
From: Lee Jones @ 2022-09-28 15:14 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Jonathan Cameron, Wim Van Sebroeck, Guenter Roeck,
	Lars-Peter Clausen, Tony Lindgren, Andy Shevchenko, linux-iio,
	linux-watchdog, linux-input, linux-kernel

On Tue, 27 Sep 2022, Dmitry Torokhov wrote:

> The driver is using "struct device" and therefore needs to include
> device.h header. We used to get this definition indirectly via inclusion
> of matrix_keypad.h from twl.h, but we are cleaning up matrix_keypad.h
> from unnecessary includes.
> 
> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> ---
> 
> v2: added Andy's reviewed-by
> 
>  drivers/mfd/twl4030-irq.c | 1 +
>  1 file changed, 1 insertion(+)

Applied, thanks.

-- 
Lee Jones [李琼斯]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2 3/3] iio: adc: twl4030-madc: add missing of.h include
  2022-09-27 16:20   ` Andy Shevchenko
@ 2022-10-01 17:07     ` Jonathan Cameron
  2022-10-01 22:14       ` Dmitry Torokhov
  0 siblings, 1 reply; 11+ messages in thread
From: Jonathan Cameron @ 2022-10-01 17:07 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Dmitry Torokhov, Lee Jones, Wim Van Sebroeck, Guenter Roeck,
	Lars-Peter Clausen, Tony Lindgren, linux-iio, linux-watchdog,
	linux-input, linux-kernel

On Tue, 27 Sep 2022 19:20:00 +0300
Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote:

> On Tue, Sep 27, 2022 at 08:46:11AM -0700, Dmitry Torokhov wrote:
> > The driver is using of_device_id/of_match_ptr() and therefore needs
> > to include of.h header. We used to get this definition indirectly via
> > inclusion of matrix_keypad.h from twl.h, but we are cleaning up
> > matrix_keypad.h from unnecessary includes.  
> 
> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Applied to the togreg branch of iio.git and pushed out as testing for
0-day to take a look.

Note that this is 6.2 material now - if that's an issue for the matrix_keypad.h
cleanup then feel free to take it via the input tree with
Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
but shout in reply to this so I know to drop it from the iio tree.

Thanks,

Jonathan

> 
> > Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> > ---
> > 
> > v2: adjusted patch description
> > 
> >  drivers/iio/adc/twl4030-madc.c | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/drivers/iio/adc/twl4030-madc.c b/drivers/iio/adc/twl4030-madc.c
> > index f8f8aea15612..c279c4f2c9b7 100644
> > --- a/drivers/iio/adc/twl4030-madc.c
> > +++ b/drivers/iio/adc/twl4030-madc.c
> > @@ -30,6 +30,7 @@
> >  #include <linux/types.h>
> >  #include <linux/gfp.h>
> >  #include <linux/err.h>
> > +#include <linux/of.h>
> >  #include <linux/regulator/consumer.h>
> >  
> >  #include <linux/iio/iio.h>
> > -- 
> > 2.38.0.rc1.362.ged0d419d3c-goog
> >   
> 


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2 3/3] iio: adc: twl4030-madc: add missing of.h include
  2022-10-01 17:07     ` Jonathan Cameron
@ 2022-10-01 22:14       ` Dmitry Torokhov
  2022-10-02 12:57         ` Jonathan Cameron
  0 siblings, 1 reply; 11+ messages in thread
From: Dmitry Torokhov @ 2022-10-01 22:14 UTC (permalink / raw)
  To: Jonathan Cameron
  Cc: Andy Shevchenko, Lee Jones, Wim Van Sebroeck, Guenter Roeck,
	Lars-Peter Clausen, Tony Lindgren, linux-iio, linux-watchdog,
	linux-input, linux-kernel

On Sat, Oct 01, 2022 at 06:07:05PM +0100, Jonathan Cameron wrote:
> On Tue, 27 Sep 2022 19:20:00 +0300
> Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote:
> 
> > On Tue, Sep 27, 2022 at 08:46:11AM -0700, Dmitry Torokhov wrote:
> > > The driver is using of_device_id/of_match_ptr() and therefore needs
> > > to include of.h header. We used to get this definition indirectly via
> > > inclusion of matrix_keypad.h from twl.h, but we are cleaning up
> > > matrix_keypad.h from unnecessary includes.  
> > 
> > Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> Applied to the togreg branch of iio.git and pushed out as testing for
> 0-day to take a look.
> 
> Note that this is 6.2 material now - if that's an issue for the matrix_keypad.h
> cleanup then feel free to take it via the input tree with
> Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> but shout in reply to this so I know to drop it from the iio tree.

OK, it is not urgent, but I do not want to lose matrix keypad changes...

How about I'll wait to see where the rest of the patches end, and if
they end up in 6.1 I'll queue twl4030-madc.c through my tree together
with the header change?

Thanks.

-- 
Dmitry

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2 3/3] iio: adc: twl4030-madc: add missing of.h include
  2022-10-01 22:14       ` Dmitry Torokhov
@ 2022-10-02 12:57         ` Jonathan Cameron
  2022-10-28  5:09           ` Dmitry Torokhov
  0 siblings, 1 reply; 11+ messages in thread
From: Jonathan Cameron @ 2022-10-02 12:57 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Andy Shevchenko, Lee Jones, Wim Van Sebroeck, Guenter Roeck,
	Lars-Peter Clausen, Tony Lindgren, linux-iio, linux-watchdog,
	linux-input, linux-kernel

On Sat, 1 Oct 2022 15:14:08 -0700
Dmitry Torokhov <dmitry.torokhov@gmail.com> wrote:

> On Sat, Oct 01, 2022 at 06:07:05PM +0100, Jonathan Cameron wrote:
> > On Tue, 27 Sep 2022 19:20:00 +0300
> > Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote:
> >   
> > > On Tue, Sep 27, 2022 at 08:46:11AM -0700, Dmitry Torokhov wrote:  
> > > > The driver is using of_device_id/of_match_ptr() and therefore needs
> > > > to include of.h header. We used to get this definition indirectly via
> > > > inclusion of matrix_keypad.h from twl.h, but we are cleaning up
> > > > matrix_keypad.h from unnecessary includes.    
> > > 
> > > Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>  
> > Applied to the togreg branch of iio.git and pushed out as testing for
> > 0-day to take a look.
> > 
> > Note that this is 6.2 material now - if that's an issue for the matrix_keypad.h
> > cleanup then feel free to take it via the input tree with
> > Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> > but shout in reply to this so I know to drop it from the iio tree.  
> 
> OK, it is not urgent, but I do not want to lose matrix keypad changes...
> 
> How about I'll wait to see where the rest of the patches end, and if
> they end up in 6.1 I'll queue twl4030-madc.c through my tree together
> with the header change?
> 
> Thanks.
> 
Ok. I'll drop it for now - let me know if I should pick it up once everything
settles down.

Jonathan


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2 3/3] iio: adc: twl4030-madc: add missing of.h include
  2022-10-02 12:57         ` Jonathan Cameron
@ 2022-10-28  5:09           ` Dmitry Torokhov
  0 siblings, 0 replies; 11+ messages in thread
From: Dmitry Torokhov @ 2022-10-28  5:09 UTC (permalink / raw)
  To: Jonathan Cameron
  Cc: Andy Shevchenko, Lee Jones, Wim Van Sebroeck, Guenter Roeck,
	Lars-Peter Clausen, Tony Lindgren, linux-iio, linux-watchdog,
	linux-input, linux-kernel

On Sun, Oct 02, 2022 at 01:57:44PM +0100, Jonathan Cameron wrote:
> On Sat, 1 Oct 2022 15:14:08 -0700
> Dmitry Torokhov <dmitry.torokhov@gmail.com> wrote:
> 
> > On Sat, Oct 01, 2022 at 06:07:05PM +0100, Jonathan Cameron wrote:
> > > On Tue, 27 Sep 2022 19:20:00 +0300
> > > Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote:
> > >   
> > > > On Tue, Sep 27, 2022 at 08:46:11AM -0700, Dmitry Torokhov wrote:  
> > > > > The driver is using of_device_id/of_match_ptr() and therefore needs
> > > > > to include of.h header. We used to get this definition indirectly via
> > > > > inclusion of matrix_keypad.h from twl.h, but we are cleaning up
> > > > > matrix_keypad.h from unnecessary includes.    
> > > > 
> > > > Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>  
> > > Applied to the togreg branch of iio.git and pushed out as testing for
> > > 0-day to take a look.
> > > 
> > > Note that this is 6.2 material now - if that's an issue for the matrix_keypad.h
> > > cleanup then feel free to take it via the input tree with
> > > Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> > > but shout in reply to this so I know to drop it from the iio tree.  
> > 
> > OK, it is not urgent, but I do not want to lose matrix keypad changes...
> > 
> > How about I'll wait to see where the rest of the patches end, and if
> > they end up in 6.1 I'll queue twl4030-madc.c through my tree together
> > with the header change?
> > 
> > Thanks.
> > 
> Ok. I'll drop it for now - let me know if I should pick it up once everything
> settles down.

Because the other patches have landed in 6.1 timeframe I picked up this
patch and the header change myself.

Thanks.

-- 
Dmitry

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2022-10-28  5:09 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-27 15:46 [PATCH v2 1/3] watchdog: twl4030_wdt: add missing mod_devicetable.h include Dmitry Torokhov
2022-09-27 15:46 ` [PATCH v2 2/3] mfd: twl4030-irq: add missing device.h include Dmitry Torokhov
2022-09-28 15:14   ` Lee Jones
2022-09-27 15:46 ` [PATCH v2 3/3] iio: adc: twl4030-madc: add missing of.h include Dmitry Torokhov
2022-09-27 16:20   ` Andy Shevchenko
2022-10-01 17:07     ` Jonathan Cameron
2022-10-01 22:14       ` Dmitry Torokhov
2022-10-02 12:57         ` Jonathan Cameron
2022-10-28  5:09           ` Dmitry Torokhov
2022-09-27 16:20   ` Andy Shevchenko
2022-09-28  1:11 ` [PATCH v2 1/3] watchdog: twl4030_wdt: add missing mod_devicetable.h include Guenter Roeck

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).