On Sat, 6 Mar 2021 20:54:26 +0100 Jernej Skrabec <[email protected]> wrote:
> TV driver was never fully implemented. Remove search for it from DE2 > driver. Correct, there is no driver in the tree which would match this string. > Signed-off-by: Jernej Skrabec <[email protected]> Reviewed-by: Andre Przywara <[email protected]> Cheers, Andre > --- > drivers/video/sunxi/sunxi_de2.c | 15 +-------------- > 1 file changed, 1 insertion(+), 14 deletions(-) > > diff --git a/drivers/video/sunxi/sunxi_de2.c b/drivers/video/sunxi/sunxi_de2.c > index a3e21aa5f13e..6b836a011944 100644 > --- a/drivers/video/sunxi/sunxi_de2.c > +++ b/drivers/video/sunxi/sunxi_de2.c > @@ -281,20 +281,7 @@ static int sunxi_de2_probe(struct udevice *dev) > > debug("%s: hdmi display not found (ret=%d)\n", __func__, ret); > > - ret = uclass_find_device_by_name(UCLASS_DISPLAY, > - "sunxi_tve", &disp); > - if (ret) { > - debug("%s: tv not found (ret=%d)\n", __func__, ret); > - return ret; > - } > - > - ret = sunxi_de2_init(dev, plat->base, VIDEO_BPP32, disp, 1, true); > - if (ret) > - return ret; > - > - video_set_flush_dcache(dev, 1); > - > - return 0; > + return -ENODEV; > } > > static int sunxi_de2_bind(struct udevice *dev) -- You received this message because you are subscribed to the Google Groups "linux-sunxi" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web, visit https://groups.google.com/d/msgid/linux-sunxi/20210307013045.1edfcdb3%40slackpad.fritz.box.
