From: Fabio Estevam fabio.estevam@freescale.com
Commit 66d5e6d329aed4 ("drm/bridge: Add vendor prefixes") changed the object name to dw-hdmi.o, which breaks the build:
make[4]: *** No rule to make target `drivers/gpu/drm/bridge/dw-hdmi.o', needed by `drivers/gpu/drm/bridge/built-in.o'. Stop.
Fix it by using the correct 'dw_hdmi.o' name.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- drivers/gpu/drm/bridge/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/bridge/Makefile b/drivers/gpu/drm/bridge/Makefile index fe490e2..e2eef1c 100644 --- a/drivers/gpu/drm/bridge/Makefile +++ b/drivers/gpu/drm/bridge/Makefile @@ -1,5 +1,5 @@ ccflags-y := -Iinclude/drm
-obj-$(CONFIG_DRM_DW_HDMI) += dw-hdmi.o +obj-$(CONFIG_DRM_DW_HDMI) += dw_hdmi.o obj-$(CONFIG_DRM_NXP_PTN3460) += nxp-ptn3460.o obj-$(CONFIG_DRM_PARADE_PS8622) += parade-ps8622.o
On Fri, Aug 14, 2015 at 11:13:16AM -0300, Fabio Estevam wrote:
From: Fabio Estevam fabio.estevam@freescale.com
Commit 66d5e6d329aed4 ("drm/bridge: Add vendor prefixes") changed the object name to dw-hdmi.o, which breaks the build:
make[4]: *** No rule to make target `drivers/gpu/drm/bridge/dw-hdmi.o', needed by `drivers/gpu/drm/bridge/built-in.o'. Stop.
Fix it by using the correct 'dw_hdmi.o' name.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com
drivers/gpu/drm/bridge/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Urgh... that's left-over of a change I backed out to avoid any potential conflicts with Russell's work on the dw-hdmi driver. I've updated the branch with your fix and resent a new pull request.
Thanks, Thierry
dri-devel@lists.freedesktop.org