Message ID | 20191015191821.11479-31-bigeasy@linutronix.de (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | None | expand |
On 10/15/19 9:18 PM, Sebastian Andrzej Siewior wrote: > 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: Mauro Carvalho Chehab <mchehab@kernel.org> > Cc: linux-media@vger.kernel.org > Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Acked-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Thanks! Hans > --- > drivers/media/platform/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/media/platform/Kconfig b/drivers/media/platform/Kconfig > index f1f61419fd292..56d4c1e91c276 100644 > --- a/drivers/media/platform/Kconfig > +++ b/drivers/media/platform/Kconfig > @@ -585,7 +585,7 @@ config VIDEO_MESON_G12A_AO_CEC > > config CEC_GPIO > tristate "Generic GPIO-based CEC driver" > - depends on PREEMPT || COMPILE_TEST > + depends on PREEMPTION || COMPILE_TEST > select CEC_CORE > select CEC_PIN > select GPIOLIB >
On 10/15/19 9:53 PM, Hans Verkuil wrote: > On 10/15/19 9:18 PM, Sebastian Andrzej Siewior wrote: >> 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: Mauro Carvalho Chehab <mchehab@kernel.org> >> Cc: linux-media@vger.kernel.org >> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> > > Acked-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Do you want me to take this patch? Just checking. Regards, Hans > > Thanks! > > Hans > >> --- >> drivers/media/platform/Kconfig | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/drivers/media/platform/Kconfig b/drivers/media/platform/Kconfig >> index f1f61419fd292..56d4c1e91c276 100644 >> --- a/drivers/media/platform/Kconfig >> +++ b/drivers/media/platform/Kconfig >> @@ -585,7 +585,7 @@ config VIDEO_MESON_G12A_AO_CEC >> >> config CEC_GPIO >> tristate "Generic GPIO-based CEC driver" >> - depends on PREEMPT || COMPILE_TEST >> + depends on PREEMPTION || COMPILE_TEST >> select CEC_CORE >> select CEC_PIN >> select GPIOLIB >> >
On 2019-10-16 13:51:14 [+0200], Hans Verkuil wrote: > Do you want me to take this patch? Just checking. It is up to you. You have all the dependencies so you can either add it to your -next branch or leave it and we will pick it up for you. > Regards, > > Hans Sebastian
On 10/16/19 2:02 PM, Sebastian Andrzej Siewior wrote: > On 2019-10-16 13:51:14 [+0200], Hans Verkuil wrote: >> Do you want me to take this patch? Just checking. > > It is up to you. You have all the dependencies so you can either add it > to your -next branch or leave it and we will pick it up for you. I'll take it. I'm preparing a pull request anyway. Regards, Hans > >> Regards, >> >> Hans > > Sebastian >
diff --git a/drivers/media/platform/Kconfig b/drivers/media/platform/Kconfig index f1f61419fd292..56d4c1e91c276 100644 --- a/drivers/media/platform/Kconfig +++ b/drivers/media/platform/Kconfig @@ -585,7 +585,7 @@ config VIDEO_MESON_G12A_AO_CEC config CEC_GPIO tristate "Generic GPIO-based CEC driver" - depends on PREEMPT || COMPILE_TEST + depends on PREEMPTION || COMPILE_TEST select CEC_CORE select CEC_PIN select GPIOLIB
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: Mauro Carvalho Chehab <mchehab@kernel.org> Cc: linux-media@vger.kernel.org Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- drivers/media/platform/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)