* [PATCH 29/34] backlight/jornada720: Use CONFIG_PREEMPTION [not found] <20191015191821.11479-1-bigeasy@linutronix.de> @ 2019-10-15 19:18 ` Sebastian Andrzej Siewior 2019-10-17 11:37 ` Daniel Thompson 2019-10-18 7:40 ` Lee Jones 0 siblings, 2 replies; 6+ messages in thread From: Sebastian Andrzej Siewior @ 2019-10-15 19:18 UTC (permalink / raw) To: linux-kernel Cc: tglx, Lee Jones, Daniel Thompson, Jingoo Han, Bartlomiej Zolnierkiewicz, dri-devel, linux-fbdev, Sebastian Andrzej Siewior From: Thomas Gleixner <tglx@linutronix.de> CONFIG_PREEMPTION is selected by CONFIG_PREEMPT and by CONFIG_PREEMPT_RT. Both PREEMPT and PREEMPT_RT require the same functionality which today depends on CONFIG_PREEMPT. Switch the Kconfig dependency to CONFIG_PREEMPTION. Cc: Lee Jones <lee.jones@linaro.org> Cc: Daniel Thompson <daniel.thompson@linaro.org> Cc: Jingoo Han <jingoohan1@gmail.com> Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> Cc: dri-devel@lists.freedesktop.org Cc: linux-fbdev@vger.kernel.org Signed-off-by: Thomas Gleixner <tglx@linutronix.de> [bigeasy: +LCD_HP700] Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- drivers/video/backlight/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/video/backlight/Kconfig b/drivers/video/backlight/Kconfig index 40676be2e46aa..d09396393724b 100644 --- a/drivers/video/backlight/Kconfig +++ b/drivers/video/backlight/Kconfig @@ -99,7 +99,7 @@ config LCD_TOSA config LCD_HP700 tristate "HP Jornada 700 series LCD Driver" - depends on SA1100_JORNADA720_SSP && !PREEMPT + depends on SA1100_JORNADA720_SSP && !PREEMPTION default y help If you have an HP Jornada 700 series handheld (710/720/728) @@ -228,7 +228,7 @@ config BACKLIGHT_HP680 config BACKLIGHT_HP700 tristate "HP Jornada 700 series Backlight Driver" - depends on SA1100_JORNADA720_SSP && !PREEMPT + depends on SA1100_JORNADA720_SSP && !PREEMPTION default y help If you have an HP Jornada 700 series, -- 2.23.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 29/34] backlight/jornada720: Use CONFIG_PREEMPTION 2019-10-15 19:18 ` [PATCH 29/34] backlight/jornada720: Use CONFIG_PREEMPTION Sebastian Andrzej Siewior @ 2019-10-17 11:37 ` Daniel Thompson 2019-10-17 13:23 ` Lee Jones 2019-10-18 7:40 ` Lee Jones 1 sibling, 1 reply; 6+ messages in thread From: Daniel Thompson @ 2019-10-17 11:37 UTC (permalink / raw) To: Sebastian Andrzej Siewior Cc: linux-kernel, tglx, Lee Jones, Jingoo Han, Bartlomiej Zolnierkiewicz, dri-devel, linux-fbdev On Tue, Oct 15, 2019 at 09:18:16PM +0200, Sebastian Andrzej Siewior wrote: > From: Thomas Gleixner <tglx@linutronix.de> > > CONFIG_PREEMPTION is selected by CONFIG_PREEMPT and by CONFIG_PREEMPT_RT. > Both PREEMPT and PREEMPT_RT require the same functionality which today > depends on CONFIG_PREEMPT. > > Switch the Kconfig dependency to CONFIG_PREEMPTION. > > Cc: Lee Jones <lee.jones@linaro.org> > Cc: Daniel Thompson <daniel.thompson@linaro.org> > Cc: Jingoo Han <jingoohan1@gmail.com> > Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> > Cc: dri-devel@lists.freedesktop.org > Cc: linux-fbdev@vger.kernel.org > Signed-off-by: Thomas Gleixner <tglx@linutronix.de> > [bigeasy: +LCD_HP700] > Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org> (I know... the review for this particular patch is trivial but an Acked-by from a maintainer means something specific and it is Lee Jones who coordinates landing cross sub-system patch sets for backlight). Daniel. > --- > drivers/video/backlight/Kconfig | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/video/backlight/Kconfig b/drivers/video/backlight/Kconfig > index 40676be2e46aa..d09396393724b 100644 > --- a/drivers/video/backlight/Kconfig > +++ b/drivers/video/backlight/Kconfig > @@ -99,7 +99,7 @@ config LCD_TOSA > > config LCD_HP700 > tristate "HP Jornada 700 series LCD Driver" > - depends on SA1100_JORNADA720_SSP && !PREEMPT > + depends on SA1100_JORNADA720_SSP && !PREEMPTION > default y > help > If you have an HP Jornada 700 series handheld (710/720/728) > @@ -228,7 +228,7 @@ config BACKLIGHT_HP680 > > config BACKLIGHT_HP700 > tristate "HP Jornada 700 series Backlight Driver" > - depends on SA1100_JORNADA720_SSP && !PREEMPT > + depends on SA1100_JORNADA720_SSP && !PREEMPTION > default y > help > If you have an HP Jornada 700 series, > -- > 2.23.0 > ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 29/34] backlight/jornada720: Use CONFIG_PREEMPTION 2019-10-17 11:37 ` Daniel Thompson @ 2019-10-17 13:23 ` Lee Jones 2019-10-17 13:28 ` Sebastian Andrzej Siewior 0 siblings, 1 reply; 6+ messages in thread From: Lee Jones @ 2019-10-17 13:23 UTC (permalink / raw) To: Daniel Thompson Cc: linux-fbdev, Bartlomiej Zolnierkiewicz, Jingoo Han, Sebastian Andrzej Siewior, linux-kernel, dri-devel, tglx On Thu, 17 Oct 2019, Daniel Thompson wrote: > On Tue, Oct 15, 2019 at 09:18:16PM +0200, Sebastian Andrzej Siewior wrote: > > From: Thomas Gleixner <tglx@linutronix.de> > > > > CONFIG_PREEMPTION is selected by CONFIG_PREEMPT and by CONFIG_PREEMPT_RT. > > Both PREEMPT and PREEMPT_RT require the same functionality which today > > depends on CONFIG_PREEMPT. > > > > Switch the Kconfig dependency to CONFIG_PREEMPTION. > > > > Cc: Lee Jones <lee.jones@linaro.org> > > Cc: Daniel Thompson <daniel.thompson@linaro.org> > > Cc: Jingoo Han <jingoohan1@gmail.com> > > Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> > > Cc: dri-devel@lists.freedesktop.org > > Cc: linux-fbdev@vger.kernel.org > > Signed-off-by: Thomas Gleixner <tglx@linutronix.de> > > [bigeasy: +LCD_HP700] > > Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> > > Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org> > > (I know... the review for this particular patch is trivial but an > Acked-by from a maintainer means something specific and it is Lee > Jones who coordinates landing cross sub-system patch sets for > backlight). Right. Thanks Dan. So what are the OP's expectations in that regard? I see this is a large set and I am only privy to this patch, thus lack wider visibility. Does this patch depend on others, or is it independent? I'm happy to take it, but wish to avoid bisectability issues in the next release kernel. -- Lee Jones [李琼斯] Linaro Services Technical Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 29/34] backlight/jornada720: Use CONFIG_PREEMPTION 2019-10-17 13:23 ` Lee Jones @ 2019-10-17 13:28 ` Sebastian Andrzej Siewior 2019-10-18 7:38 ` Lee Jones 0 siblings, 1 reply; 6+ messages in thread From: Sebastian Andrzej Siewior @ 2019-10-17 13:28 UTC (permalink / raw) To: Lee Jones Cc: Daniel Thompson, linux-kernel, tglx, Jingoo Han, Bartlomiej Zolnierkiewicz, dri-devel, linux-fbdev On 2019-10-17 14:23:24 [+0100], Lee Jones wrote: > So what are the OP's expectations in that regard? I see this is a > large set and I am only privy to this patch, thus lack wider > visibility. Does this patch depend on others, or is it independent? > I'm happy to take it, but wish to avoid bisectability issues in the > next release kernel. It is independent, you can apply it to your -next branch. All dependencies are merged. Sebastian ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 29/34] backlight/jornada720: Use CONFIG_PREEMPTION 2019-10-17 13:28 ` Sebastian Andrzej Siewior @ 2019-10-18 7:38 ` Lee Jones 0 siblings, 0 replies; 6+ messages in thread From: Lee Jones @ 2019-10-18 7:38 UTC (permalink / raw) To: Sebastian Andrzej Siewior Cc: Daniel Thompson, Bartlomiej Zolnierkiewicz, Jingoo Han, linux-kernel, dri-devel, linux-fbdev, tglx On Thu, 17 Oct 2019, Sebastian Andrzej Siewior wrote: > On 2019-10-17 14:23:24 [+0100], Lee Jones wrote: > > So what are the OP's expectations in that regard? I see this is a > > large set and I am only privy to this patch, thus lack wider > > visibility. Does this patch depend on others, or is it independent? > > I'm happy to take it, but wish to avoid bisectability issues in the > > next release kernel. > > It is independent, you can apply it to your -next branch. All > dependencies are merged. > > Sebastian Wonderful. Thanks for the info. -- Lee Jones [李琼斯] Linaro Services Technical Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 29/34] backlight/jornada720: Use CONFIG_PREEMPTION 2019-10-15 19:18 ` [PATCH 29/34] backlight/jornada720: Use CONFIG_PREEMPTION Sebastian Andrzej Siewior 2019-10-17 11:37 ` Daniel Thompson @ 2019-10-18 7:40 ` Lee Jones 1 sibling, 0 replies; 6+ messages in thread From: Lee Jones @ 2019-10-18 7:40 UTC (permalink / raw) To: Sebastian Andrzej Siewior Cc: Daniel Thompson, Bartlomiej Zolnierkiewicz, Jingoo Han, linux-kernel, dri-devel, linux-fbdev, tglx On Tue, 15 Oct 2019, Sebastian Andrzej Siewior wrote: > From: Thomas Gleixner <tglx@linutronix.de> > > CONFIG_PREEMPTION is selected by CONFIG_PREEMPT and by CONFIG_PREEMPT_RT. > Both PREEMPT and PREEMPT_RT require the same functionality which today > depends on CONFIG_PREEMPT. > > Switch the Kconfig dependency to CONFIG_PREEMPTION. > > Cc: Lee Jones <lee.jones@linaro.org> > Cc: Daniel Thompson <daniel.thompson@linaro.org> > Cc: Jingoo Han <jingoohan1@gmail.com> > Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> > Cc: dri-devel@lists.freedesktop.org > Cc: linux-fbdev@vger.kernel.org > Signed-off-by: Thomas Gleixner <tglx@linutronix.de> > [bigeasy: +LCD_HP700] > Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> > --- > drivers/video/backlight/Kconfig | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) Applied, thanks. -- Lee Jones [李琼斯] Linaro Services Technical Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2019-10-18 7:40 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20191015191821.11479-1-bigeasy@linutronix.de>
2019-10-15 19:18 ` [PATCH 29/34] backlight/jornada720: Use CONFIG_PREEMPTION Sebastian Andrzej Siewior
2019-10-17 11:37 ` Daniel Thompson
2019-10-17 13:23 ` Lee Jones
2019-10-17 13:28 ` Sebastian Andrzej Siewior
2019-10-18 7:38 ` Lee Jones
2019-10-18 7:40 ` Lee Jones
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).