diff options
author | Fabrizio Castro <fabrizio.castro@bp.renesas.com> | 2019-11-13 16:51:24 +0100 |
---|---|---|
committer | Neil Armstrong <narmstrong@baylibre.com> | 2019-12-18 12:26:07 +0100 |
commit | 0d60131a3b5dcb4c6980eb30cbca3c6fb62d7b6f (patch) | |
tree | 96a995dbdc3e27e0be3a8b77a12936a7fab3fd65 /drivers/gpu/drm/bridge/Makefile | |
parent | dt-bindings: display: bridge: lvds-transmitter: Document "ti, sn75lvds83" (diff) | |
download | linux-0d60131a3b5dcb4c6980eb30cbca3c6fb62d7b6f.tar.xz linux-0d60131a3b5dcb4c6980eb30cbca3c6fb62d7b6f.zip |
drm/bridge: Repurpose lvds-encoder.c
lvds-encoder.c implementation is also suitable for LVDS decoders,
not just LVDS encoders.
Instead of creating a new driver for addressing support for
transparent LVDS decoders, repurpose lvds-encoder.c for the greater
good with this patch.
This patch only "rebrands" the lvds-encoder.c driver, to make it
suitable for hosting LVDS decoders support. The actual support for
LVDS decoders will come with a later patch.
Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Link: https://patchwork.freedesktop.org/patch/msgid/1573660292-10629-6-git-send-email-fabrizio.castro@bp.renesas.com
Diffstat (limited to 'drivers/gpu/drm/bridge/Makefile')
-rw-r--r-- | drivers/gpu/drm/bridge/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/bridge/Makefile b/drivers/gpu/drm/bridge/Makefile index a6c7dd7727ea..cd16ce830270 100644 --- a/drivers/gpu/drm/bridge/Makefile +++ b/drivers/gpu/drm/bridge/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 obj-$(CONFIG_DRM_CDNS_DSI) += cdns-dsi.o obj-$(CONFIG_DRM_DUMB_VGA_DAC) += dumb-vga-dac.o -obj-$(CONFIG_DRM_LVDS_ENCODER) += lvds-encoder.o +obj-$(CONFIG_DRM_LVDS_CODEC) += lvds-codec.o obj-$(CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW) += megachips-stdpxxxx-ge-b850v3-fw.o obj-$(CONFIG_DRM_NXP_PTN3460) += nxp-ptn3460.o obj-$(CONFIG_DRM_PARADE_PS8622) += parade-ps8622.o |