Message ID | 20220120150024.646714-4-paul.kocialkowski@bootlin.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | drm: LogiCVC display controller support | expand |
On Thu, Jan 20, 2022 at 4:00 PM Paul Kocialkowski <paul.kocialkowski@bootlin.com> wrote: > Support the newly-introduced common compatible for version 3. > > Signed-off-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Are there dependencies between the GPIO patches and the rest? Doesn't look like that. Can Bartosz just merge the GPIO stuff to the GPIO tree? Yours, Linus Walleij
Hi, On Sun 30 Jan 22, 01:43, Linus Walleij wrote: > On Thu, Jan 20, 2022 at 4:00 PM Paul Kocialkowski > <paul.kocialkowski@bootlin.com> wrote: > > > Support the newly-introduced common compatible for version 3. > > > > Signed-off-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com> > > Reviewed-by: Linus Walleij <linus.walleij@linaro.org> > > Are there dependencies between the GPIO patches and the rest? > Doesn't look like that. > Can Bartosz just merge the GPIO stuff to the GPIO tree? Yeah I think it's independent, no dependencies. Paul
On Tue, Feb 8, 2022 at 10:55 AM Bartosz Golaszewski <brgl@bgdev.pl> wrote: > On Sun, Jan 30, 2022 at 1:43 AM Linus Walleij <linus.walleij@linaro.org> wrote: > > > > On Thu, Jan 20, 2022 at 4:00 PM Paul Kocialkowski > > <paul.kocialkowski@bootlin.com> wrote: > > > > > Support the newly-introduced common compatible for version 3. > > > > > > Signed-off-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com> > > > > Reviewed-by: Linus Walleij <linus.walleij@linaro.org> > > > > Are there dependencies between the GPIO patches and the rest? > > Doesn't look like that. > > Can Bartosz just merge the GPIO stuff to the GPIO tree? > > > > Yours, > > Linus Walleij > > Except I'm seeing there's no agreement on the actual compatible yet in > the previous patch. Yeah I noticed that after writing that :/ Yours, Linus Walleij
diff --git a/drivers/gpio/gpio-logicvc.c b/drivers/gpio/gpio-logicvc.c index 992cc958a43f..9b27343f5242 100644 --- a/drivers/gpio/gpio-logicvc.c +++ b/drivers/gpio/gpio-logicvc.c @@ -145,9 +145,8 @@ static int logicvc_gpio_probe(struct platform_device *pdev) } static const struct of_device_id logicivc_gpio_of_table[] = { - { - .compatible = "xylon,logicvc-3.02.a-gpio", - }, + { .compatible = "xylon,logicvc-3.02.a-gpio" }, + { .compatible = "xylon,logicvc-3-gpio" }, { } };
Support the newly-introduced common compatible for version 3. Signed-off-by: Paul Kocialkowski <paul.kocialkowski@bootlin.com> --- drivers/gpio/gpio-logicvc.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)