* [PATCH 1/2] drm/omapdrm: include pinctrl/consumer.h where needed @ 2016-05-09 21:51 Arnd Bergmann 2016-05-09 21:51 ` [PATCH 2/2] drm/sti: include linux/seq_file.h " Arnd Bergmann 2016-05-10 10:52 ` [PATCH 1/2] drm/omapdrm: include pinctrl/consumer.h " Tomi Valkeinen 0 siblings, 2 replies; 5+ messages in thread From: Arnd Bergmann @ 2016-05-09 21:51 UTC (permalink / raw) To: David Airlie, Tomi Valkeinen, Laurent Pinchart Cc: Arnd Bergmann, Dave Gerlach, Rob Clark, Dave Airlie, dri-devel, linux-kernel In some configurations, we can build the OMAP dss driver without implictly including the pinctrl consumer definitions, causing a build error: gpu/drm/omapdrm/dss/dss.c: In function 'dss_runtime_suspend': gpu/drm/omapdrm/dss/dss.c:1268:2: error: implicit declaration of function 'pinctrl_pm_select_sleep_state' [-Werror=implicit-function-declaration] This adds an explicit #include. Signed-off-by: Arnd Bergmann <arnd@arndb.de> --- drivers/gpu/drm/omapdrm/dss/dss.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/omapdrm/dss/dss.c b/drivers/gpu/drm/omapdrm/dss/dss.c index f95ff319e68e..3303cfad4838 100644 --- a/drivers/gpu/drm/omapdrm/dss/dss.c +++ b/drivers/gpu/drm/omapdrm/dss/dss.c @@ -30,6 +30,7 @@ #include <linux/delay.h> #include <linux/seq_file.h> #include <linux/clk.h> +#include <linux/pinctrl/consumer.h> #include <linux/platform_device.h> #include <linux/pm_runtime.h> #include <linux/gfp.h> -- 2.7.0 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] drm/sti: include linux/seq_file.h where needed 2016-05-09 21:51 [PATCH 1/2] drm/omapdrm: include pinctrl/consumer.h where needed Arnd Bergmann @ 2016-05-09 21:51 ` Arnd Bergmann 2016-05-11 7:07 ` Benjamin Gaignard 2016-05-10 10:52 ` [PATCH 1/2] drm/omapdrm: include pinctrl/consumer.h " Tomi Valkeinen 1 sibling, 1 reply; 5+ messages in thread From: Arnd Bergmann @ 2016-05-09 21:51 UTC (permalink / raw) To: Benjamin Gaignard, David Airlie Cc: Arnd Bergmann, Vincent Abriou, Fabien Dessenne, Luis R. Rodriguez, Daniel Vetter, Ville Syrjälä, Bich Hemon, Thierry Reding, Nicolas VANHAELEWYN, Carlos Palminha, dri-devel, linux-kernel The sti drm driver has a lot of debugfs interface that cause build errors in some configurations when seq_file.h is not included implicitly: drm/sti/sti_mixer.c: In function 'mixer_dbg_ctl': drm/sti/sti_mixer.c:88:2: error: implicit declaration of function 'seq_puts' [-Werror=implicit-function-declaration] drm/sti/sti_mixer.c:91:4: error: implicit declaration of function 'seq_printf' [-Werror=implicit-function-declaration] drm/sti/sti_gdp.c: In function 'gdp_dbg_ctl': drm/sti/sti_gdp.c:146:2: error: implicit declaration of function 'seq_puts' [-Werror=implicit-function-declaration] drm/sti/sti_gdp.c:149:4: error: implicit declaration of function 'seq_printf' [-Werror=implicit-function-declaration] drm/sti/sti_gdp.c: In function 'gdp_dbg_show': drm/sti/sti_gdp.c:208:32: error: dereferencing pointer to incomplete type 'struct seq_file' This adds an explicit #include statement in all of the affected files. Signed-off-by: Arnd Bergmann <arnd@arndb.de> --- drivers/gpu/drm/sti/sti_cursor.c | 2 ++ drivers/gpu/drm/sti/sti_gdp.c | 1 + drivers/gpu/drm/sti/sti_hda.c | 1 + drivers/gpu/drm/sti/sti_hqvdp.c | 1 + drivers/gpu/drm/sti/sti_mixer.c | 1 + drivers/gpu/drm/sti/sti_tvout.c | 1 + drivers/gpu/drm/sti/sti_vid.c | 1 + 7 files changed, 8 insertions(+) diff --git a/drivers/gpu/drm/sti/sti_cursor.c b/drivers/gpu/drm/sti/sti_cursor.c index 3abb400151ac..4e990299735c 100644 --- a/drivers/gpu/drm/sti/sti_cursor.c +++ b/drivers/gpu/drm/sti/sti_cursor.c @@ -6,6 +6,8 @@ * License terms: GNU General Public License (GPL), version 2 */ +#include <linux/seq_file.h> + #include <drm/drm_atomic.h> #include <drm/drm_fb_cma_helper.h> #include <drm/drm_gem_cma_helper.h> diff --git a/drivers/gpu/drm/sti/sti_gdp.c b/drivers/gpu/drm/sti/sti_gdp.c index ff3d3e7e7704..ff33c38da197 100644 --- a/drivers/gpu/drm/sti/sti_gdp.c +++ b/drivers/gpu/drm/sti/sti_gdp.c @@ -5,6 +5,7 @@ * for STMicroelectronics. * License terms: GNU General Public License (GPL), version 2 */ +#include <linux/seq_file.h> #include <drm/drm_atomic.h> #include <drm/drm_fb_cma_helper.h> diff --git a/drivers/gpu/drm/sti/sti_hda.c b/drivers/gpu/drm/sti/sti_hda.c index ec0d017eaf1a..f7d3464cdf09 100644 --- a/drivers/gpu/drm/sti/sti_hda.c +++ b/drivers/gpu/drm/sti/sti_hda.c @@ -8,6 +8,7 @@ #include <linux/component.h> #include <linux/module.h> #include <linux/platform_device.h> +#include <linux/seq_file.h> #include <drm/drmP.h> #include <drm/drm_atomic_helper.h> diff --git a/drivers/gpu/drm/sti/sti_hqvdp.c b/drivers/gpu/drm/sti/sti_hqvdp.c index e05b0dc523ff..1edec29b9e45 100644 --- a/drivers/gpu/drm/sti/sti_hqvdp.c +++ b/drivers/gpu/drm/sti/sti_hqvdp.c @@ -7,6 +7,7 @@ #include <linux/component.h> #include <linux/firmware.h> #include <linux/reset.h> +#include <linux/seq_file.h> #include <drm/drm_atomic.h> #include <drm/drm_fb_cma_helper.h> diff --git a/drivers/gpu/drm/sti/sti_mixer.c b/drivers/gpu/drm/sti/sti_mixer.c index e7425c38fc93..aed7801b51f7 100644 --- a/drivers/gpu/drm/sti/sti_mixer.c +++ b/drivers/gpu/drm/sti/sti_mixer.c @@ -5,6 +5,7 @@ * for STMicroelectronics. * License terms: GNU General Public License (GPL), version 2 */ +#include <linux/seq_file.h> #include "sti_compositor.h" #include "sti_mixer.h" diff --git a/drivers/gpu/drm/sti/sti_tvout.c b/drivers/gpu/drm/sti/sti_tvout.c index 2c99016443e5..f983db5a59da 100644 --- a/drivers/gpu/drm/sti/sti_tvout.c +++ b/drivers/gpu/drm/sti/sti_tvout.c @@ -12,6 +12,7 @@ #include <linux/of_platform.h> #include <linux/platform_device.h> #include <linux/reset.h> +#include <linux/seq_file.h> #include <drm/drmP.h> #include <drm/drm_crtc_helper.h> diff --git a/drivers/gpu/drm/sti/sti_vid.c b/drivers/gpu/drm/sti/sti_vid.c index 5a2c5dc3687b..523ed19f5ac6 100644 --- a/drivers/gpu/drm/sti/sti_vid.c +++ b/drivers/gpu/drm/sti/sti_vid.c @@ -3,6 +3,7 @@ * Author: Fabien Dessenne <fabien.dessenne@st.com> for STMicroelectronics. * License terms: GNU General Public License (GPL), version 2 */ +#include <linux/seq_file.h> #include <drm/drmP.h> -- 2.7.0 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] drm/sti: include linux/seq_file.h where needed 2016-05-09 21:51 ` [PATCH 2/2] drm/sti: include linux/seq_file.h " Arnd Bergmann @ 2016-05-11 7:07 ` Benjamin Gaignard 2016-05-11 7:47 ` Daniel Vetter 0 siblings, 1 reply; 5+ messages in thread From: Benjamin Gaignard @ 2016-05-11 7:07 UTC (permalink / raw) To: Arnd Bergmann Cc: David Airlie, Vincent Abriou, Fabien Dessenne, Luis R. Rodriguez, Daniel Vetter, Ville Syrjälä, Bich Hemon, Thierry Reding, Nicolas VANHAELEWYN, Carlos Palminha, dri-devel@lists.freedesktop.org, Linux Kernel Mailing List Acked-by: Benjamin Gaignard <benjamin.gaignard@linaro.org> 2016-05-09 23:51 GMT+02:00 Arnd Bergmann <arnd@arndb.de>: > The sti drm driver has a lot of debugfs interface that cause > build errors in some configurations when seq_file.h is not > included implicitly: > > drm/sti/sti_mixer.c: In function 'mixer_dbg_ctl': > drm/sti/sti_mixer.c:88:2: error: implicit declaration of function 'seq_puts' [-Werror=implicit-function-declaration] > drm/sti/sti_mixer.c:91:4: error: implicit declaration of function 'seq_printf' [-Werror=implicit-function-declaration] > drm/sti/sti_gdp.c: In function 'gdp_dbg_ctl': > drm/sti/sti_gdp.c:146:2: error: implicit declaration of function 'seq_puts' [-Werror=implicit-function-declaration] > drm/sti/sti_gdp.c:149:4: error: implicit declaration of function 'seq_printf' [-Werror=implicit-function-declaration] > drm/sti/sti_gdp.c: In function 'gdp_dbg_show': > drm/sti/sti_gdp.c:208:32: error: dereferencing pointer to incomplete type 'struct seq_file' > > This adds an explicit #include statement in all of the affected files. > > Signed-off-by: Arnd Bergmann <arnd@arndb.de> > --- > drivers/gpu/drm/sti/sti_cursor.c | 2 ++ > drivers/gpu/drm/sti/sti_gdp.c | 1 + > drivers/gpu/drm/sti/sti_hda.c | 1 + > drivers/gpu/drm/sti/sti_hqvdp.c | 1 + > drivers/gpu/drm/sti/sti_mixer.c | 1 + > drivers/gpu/drm/sti/sti_tvout.c | 1 + > drivers/gpu/drm/sti/sti_vid.c | 1 + > 7 files changed, 8 insertions(+) > > diff --git a/drivers/gpu/drm/sti/sti_cursor.c b/drivers/gpu/drm/sti/sti_cursor.c > index 3abb400151ac..4e990299735c 100644 > --- a/drivers/gpu/drm/sti/sti_cursor.c > +++ b/drivers/gpu/drm/sti/sti_cursor.c > @@ -6,6 +6,8 @@ > * License terms: GNU General Public License (GPL), version 2 > */ > > +#include <linux/seq_file.h> > + > #include <drm/drm_atomic.h> > #include <drm/drm_fb_cma_helper.h> > #include <drm/drm_gem_cma_helper.h> > diff --git a/drivers/gpu/drm/sti/sti_gdp.c b/drivers/gpu/drm/sti/sti_gdp.c > index ff3d3e7e7704..ff33c38da197 100644 > --- a/drivers/gpu/drm/sti/sti_gdp.c > +++ b/drivers/gpu/drm/sti/sti_gdp.c > @@ -5,6 +5,7 @@ > * for STMicroelectronics. > * License terms: GNU General Public License (GPL), version 2 > */ > +#include <linux/seq_file.h> > > #include <drm/drm_atomic.h> > #include <drm/drm_fb_cma_helper.h> > diff --git a/drivers/gpu/drm/sti/sti_hda.c b/drivers/gpu/drm/sti/sti_hda.c > index ec0d017eaf1a..f7d3464cdf09 100644 > --- a/drivers/gpu/drm/sti/sti_hda.c > +++ b/drivers/gpu/drm/sti/sti_hda.c > @@ -8,6 +8,7 @@ > #include <linux/component.h> > #include <linux/module.h> > #include <linux/platform_device.h> > +#include <linux/seq_file.h> > > #include <drm/drmP.h> > #include <drm/drm_atomic_helper.h> > diff --git a/drivers/gpu/drm/sti/sti_hqvdp.c b/drivers/gpu/drm/sti/sti_hqvdp.c > index e05b0dc523ff..1edec29b9e45 100644 > --- a/drivers/gpu/drm/sti/sti_hqvdp.c > +++ b/drivers/gpu/drm/sti/sti_hqvdp.c > @@ -7,6 +7,7 @@ > #include <linux/component.h> > #include <linux/firmware.h> > #include <linux/reset.h> > +#include <linux/seq_file.h> > > #include <drm/drm_atomic.h> > #include <drm/drm_fb_cma_helper.h> > diff --git a/drivers/gpu/drm/sti/sti_mixer.c b/drivers/gpu/drm/sti/sti_mixer.c > index e7425c38fc93..aed7801b51f7 100644 > --- a/drivers/gpu/drm/sti/sti_mixer.c > +++ b/drivers/gpu/drm/sti/sti_mixer.c > @@ -5,6 +5,7 @@ > * for STMicroelectronics. > * License terms: GNU General Public License (GPL), version 2 > */ > +#include <linux/seq_file.h> > > #include "sti_compositor.h" > #include "sti_mixer.h" > diff --git a/drivers/gpu/drm/sti/sti_tvout.c b/drivers/gpu/drm/sti/sti_tvout.c > index 2c99016443e5..f983db5a59da 100644 > --- a/drivers/gpu/drm/sti/sti_tvout.c > +++ b/drivers/gpu/drm/sti/sti_tvout.c > @@ -12,6 +12,7 @@ > #include <linux/of_platform.h> > #include <linux/platform_device.h> > #include <linux/reset.h> > +#include <linux/seq_file.h> > > #include <drm/drmP.h> > #include <drm/drm_crtc_helper.h> > diff --git a/drivers/gpu/drm/sti/sti_vid.c b/drivers/gpu/drm/sti/sti_vid.c > index 5a2c5dc3687b..523ed19f5ac6 100644 > --- a/drivers/gpu/drm/sti/sti_vid.c > +++ b/drivers/gpu/drm/sti/sti_vid.c > @@ -3,6 +3,7 @@ > * Author: Fabien Dessenne <fabien.dessenne@st.com> for STMicroelectronics. > * License terms: GNU General Public License (GPL), version 2 > */ > +#include <linux/seq_file.h> > > #include <drm/drmP.h> > > -- > 2.7.0 > -- Benjamin Gaignard Graphic Working Group Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] drm/sti: include linux/seq_file.h where needed 2016-05-11 7:07 ` Benjamin Gaignard @ 2016-05-11 7:47 ` Daniel Vetter 0 siblings, 0 replies; 5+ messages in thread From: Daniel Vetter @ 2016-05-11 7:47 UTC (permalink / raw) To: Benjamin Gaignard Cc: Arnd Bergmann, David Airlie, Vincent Abriou, Fabien Dessenne, Luis R. Rodriguez, Daniel Vetter, Ville Syrjälä, Bich Hemon, Thierry Reding, Nicolas VANHAELEWYN, Carlos Palminha, dri-devel@lists.freedesktop.org, Linux Kernel Mailing List On Wed, May 11, 2016 at 09:07:06AM +0200, Benjamin Gaignard wrote: > Acked-by: Benjamin Gaignard <benjamin.gaignard@linaro.org> > > 2016-05-09 23:51 GMT+02:00 Arnd Bergmann <arnd@arndb.de>: > > The sti drm driver has a lot of debugfs interface that cause > > build errors in some configurations when seq_file.h is not > > included implicitly: > > > > drm/sti/sti_mixer.c: In function 'mixer_dbg_ctl': > > drm/sti/sti_mixer.c:88:2: error: implicit declaration of function 'seq_puts' [-Werror=implicit-function-declaration] > > drm/sti/sti_mixer.c:91:4: error: implicit declaration of function 'seq_printf' [-Werror=implicit-function-declaration] > > drm/sti/sti_gdp.c: In function 'gdp_dbg_ctl': > > drm/sti/sti_gdp.c:146:2: error: implicit declaration of function 'seq_puts' [-Werror=implicit-function-declaration] > > drm/sti/sti_gdp.c:149:4: error: implicit declaration of function 'seq_printf' [-Werror=implicit-function-declaration] > > drm/sti/sti_gdp.c: In function 'gdp_dbg_show': > > drm/sti/sti_gdp.c:208:32: error: dereferencing pointer to incomplete type 'struct seq_file' > > > > This adds an explicit #include statement in all of the affected files. > > > > Signed-off-by: Arnd Bergmann <arnd@arndb.de> Applied to drm-misc. -Daniel > > --- > > drivers/gpu/drm/sti/sti_cursor.c | 2 ++ > > drivers/gpu/drm/sti/sti_gdp.c | 1 + > > drivers/gpu/drm/sti/sti_hda.c | 1 + > > drivers/gpu/drm/sti/sti_hqvdp.c | 1 + > > drivers/gpu/drm/sti/sti_mixer.c | 1 + > > drivers/gpu/drm/sti/sti_tvout.c | 1 + > > drivers/gpu/drm/sti/sti_vid.c | 1 + > > 7 files changed, 8 insertions(+) > > > > diff --git a/drivers/gpu/drm/sti/sti_cursor.c b/drivers/gpu/drm/sti/sti_cursor.c > > index 3abb400151ac..4e990299735c 100644 > > --- a/drivers/gpu/drm/sti/sti_cursor.c > > +++ b/drivers/gpu/drm/sti/sti_cursor.c > > @@ -6,6 +6,8 @@ > > * License terms: GNU General Public License (GPL), version 2 > > */ > > > > +#include <linux/seq_file.h> > > + > > #include <drm/drm_atomic.h> > > #include <drm/drm_fb_cma_helper.h> > > #include <drm/drm_gem_cma_helper.h> > > diff --git a/drivers/gpu/drm/sti/sti_gdp.c b/drivers/gpu/drm/sti/sti_gdp.c > > index ff3d3e7e7704..ff33c38da197 100644 > > --- a/drivers/gpu/drm/sti/sti_gdp.c > > +++ b/drivers/gpu/drm/sti/sti_gdp.c > > @@ -5,6 +5,7 @@ > > * for STMicroelectronics. > > * License terms: GNU General Public License (GPL), version 2 > > */ > > +#include <linux/seq_file.h> > > > > #include <drm/drm_atomic.h> > > #include <drm/drm_fb_cma_helper.h> > > diff --git a/drivers/gpu/drm/sti/sti_hda.c b/drivers/gpu/drm/sti/sti_hda.c > > index ec0d017eaf1a..f7d3464cdf09 100644 > > --- a/drivers/gpu/drm/sti/sti_hda.c > > +++ b/drivers/gpu/drm/sti/sti_hda.c > > @@ -8,6 +8,7 @@ > > #include <linux/component.h> > > #include <linux/module.h> > > #include <linux/platform_device.h> > > +#include <linux/seq_file.h> > > > > #include <drm/drmP.h> > > #include <drm/drm_atomic_helper.h> > > diff --git a/drivers/gpu/drm/sti/sti_hqvdp.c b/drivers/gpu/drm/sti/sti_hqvdp.c > > index e05b0dc523ff..1edec29b9e45 100644 > > --- a/drivers/gpu/drm/sti/sti_hqvdp.c > > +++ b/drivers/gpu/drm/sti/sti_hqvdp.c > > @@ -7,6 +7,7 @@ > > #include <linux/component.h> > > #include <linux/firmware.h> > > #include <linux/reset.h> > > +#include <linux/seq_file.h> > > > > #include <drm/drm_atomic.h> > > #include <drm/drm_fb_cma_helper.h> > > diff --git a/drivers/gpu/drm/sti/sti_mixer.c b/drivers/gpu/drm/sti/sti_mixer.c > > index e7425c38fc93..aed7801b51f7 100644 > > --- a/drivers/gpu/drm/sti/sti_mixer.c > > +++ b/drivers/gpu/drm/sti/sti_mixer.c > > @@ -5,6 +5,7 @@ > > * for STMicroelectronics. > > * License terms: GNU General Public License (GPL), version 2 > > */ > > +#include <linux/seq_file.h> > > > > #include "sti_compositor.h" > > #include "sti_mixer.h" > > diff --git a/drivers/gpu/drm/sti/sti_tvout.c b/drivers/gpu/drm/sti/sti_tvout.c > > index 2c99016443e5..f983db5a59da 100644 > > --- a/drivers/gpu/drm/sti/sti_tvout.c > > +++ b/drivers/gpu/drm/sti/sti_tvout.c > > @@ -12,6 +12,7 @@ > > #include <linux/of_platform.h> > > #include <linux/platform_device.h> > > #include <linux/reset.h> > > +#include <linux/seq_file.h> > > > > #include <drm/drmP.h> > > #include <drm/drm_crtc_helper.h> > > diff --git a/drivers/gpu/drm/sti/sti_vid.c b/drivers/gpu/drm/sti/sti_vid.c > > index 5a2c5dc3687b..523ed19f5ac6 100644 > > --- a/drivers/gpu/drm/sti/sti_vid.c > > +++ b/drivers/gpu/drm/sti/sti_vid.c > > @@ -3,6 +3,7 @@ > > * Author: Fabien Dessenne <fabien.dessenne@st.com> for STMicroelectronics. > > * License terms: GNU General Public License (GPL), version 2 > > */ > > +#include <linux/seq_file.h> > > > > #include <drm/drmP.h> > > > > -- > > 2.7.0 > > > > > > -- > Benjamin Gaignard > > Graphic Working Group > > Linaro.org │ Open source software for ARM SoCs > > Follow Linaro: Facebook | Twitter | Blog -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] drm/omapdrm: include pinctrl/consumer.h where needed 2016-05-09 21:51 [PATCH 1/2] drm/omapdrm: include pinctrl/consumer.h where needed Arnd Bergmann 2016-05-09 21:51 ` [PATCH 2/2] drm/sti: include linux/seq_file.h " Arnd Bergmann @ 2016-05-10 10:52 ` Tomi Valkeinen 1 sibling, 0 replies; 5+ messages in thread From: Tomi Valkeinen @ 2016-05-10 10:52 UTC (permalink / raw) To: Arnd Bergmann, David Airlie, Laurent Pinchart Cc: Dave Gerlach, Rob Clark, Dave Airlie, dri-devel, linux-kernel [-- Attachment #1.1: Type: text/plain, Size: 1103 bytes --] On 10/05/16 00:51, Arnd Bergmann wrote: > In some configurations, we can build the OMAP dss driver without > implictly including the pinctrl consumer definitions, causing > a build error: > > gpu/drm/omapdrm/dss/dss.c: In function 'dss_runtime_suspend': > gpu/drm/omapdrm/dss/dss.c:1268:2: error: implicit declaration of function 'pinctrl_pm_select_sleep_state' [-Werror=implicit-function-declaration] > > This adds an explicit #include. > > Signed-off-by: Arnd Bergmann <arnd@arndb.de> > --- > drivers/gpu/drm/omapdrm/dss/dss.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/gpu/drm/omapdrm/dss/dss.c b/drivers/gpu/drm/omapdrm/dss/dss.c > index f95ff319e68e..3303cfad4838 100644 > --- a/drivers/gpu/drm/omapdrm/dss/dss.c > +++ b/drivers/gpu/drm/omapdrm/dss/dss.c > @@ -30,6 +30,7 @@ > #include <linux/delay.h> > #include <linux/seq_file.h> > #include <linux/clk.h> > +#include <linux/pinctrl/consumer.h> > #include <linux/platform_device.h> > #include <linux/pm_runtime.h> > #include <linux/gfp.h> Thanks, queued for omapdrm fixes. Tomi [-- Attachment #2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-05-11 7:47 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2016-05-09 21:51 [PATCH 1/2] drm/omapdrm: include pinctrl/consumer.h where needed Arnd Bergmann 2016-05-09 21:51 ` [PATCH 2/2] drm/sti: include linux/seq_file.h " Arnd Bergmann 2016-05-11 7:07 ` Benjamin Gaignard 2016-05-11 7:47 ` Daniel Vetter 2016-05-10 10:52 ` [PATCH 1/2] drm/omapdrm: include pinctrl/consumer.h " Tomi Valkeinen
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox