drivers/gpu/drm/openchrome/Makefile | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-)
New commits: commit f13e92cc674ead176dc05bf541fb257de0fec8e7 Author: Kevin Brace <kevinbr...@gmx.com> Date: Wed Apr 25 15:45:55 2018 -0700 drm/openchrome: Change via_*.c to openchrome_*.c Plus, a few .c files not using the via_*.c naming convention were changed to openchrome_*.c as well. Signed-off-by: Kevin Brace <kevinbr...@gmx.com> diff --git a/drivers/gpu/drm/openchrome/Makefile b/drivers/gpu/drm/openchrome/Makefile index 852c57e13dc3..e44d044d47a3 100644 --- a/drivers/gpu/drm/openchrome/Makefile +++ b/drivers/gpu/drm/openchrome/Makefile @@ -3,10 +3,26 @@ # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher. ccflags-y := -Iinclude/drm -openchrome-y := via_drv.o via_pm.o via_i2c.o via_irq.o via_verifier.o via_ioc32.o \ - ttm_gem.o via_ttm.o via_fence.o via_sgdma.o \ - via_h1_dma.o via_h1_cmdbuf.o \ - via_display.o via_crtc.o crtc_hw.o via_clocks.o \ - via_analog.o via_fp.o via_tmds.o via_hdmi.o via_fb.o +openchrome-y := openchrome_analog.o \ + openchrome_clocks.o \ + openchrome_crtc.o \ + openchrome_crtc_hw.o \ + openchrome_display.o \ + openchrome_drv.o \ + openchrome_fb.o \ + openchrome_fence.o \ + openchrome_fp.o \ + openchrome_gem.o \ + openchrome_h1_cmdbuf.o \ + openchrome_h1_dma.o \ + openchrome_hdmi.o \ + openchrome_i2c.o \ + openchrome_ioc32.o \ + openchrome_irq.o \ + openchrome_pm.o \ + openchrome_sgdma.o \ + openchrome_tmds.o \ + openchrome_ttm.o \ + openchrome_verifier.o obj-$(CONFIG_DRM_OPENCHROME) += openchrome.o diff --git a/drivers/gpu/drm/openchrome/via_analog.c b/drivers/gpu/drm/openchrome/openchrome_analog.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_analog.c rename to drivers/gpu/drm/openchrome/openchrome_analog.c diff --git a/drivers/gpu/drm/openchrome/via_clocks.c b/drivers/gpu/drm/openchrome/openchrome_clocks.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_clocks.c rename to drivers/gpu/drm/openchrome/openchrome_clocks.c diff --git a/drivers/gpu/drm/openchrome/via_crtc.c b/drivers/gpu/drm/openchrome/openchrome_crtc.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_crtc.c rename to drivers/gpu/drm/openchrome/openchrome_crtc.c diff --git a/drivers/gpu/drm/openchrome/crtc_hw.c b/drivers/gpu/drm/openchrome/openchrome_crtc_hw.c similarity index 100% rename from drivers/gpu/drm/openchrome/crtc_hw.c rename to drivers/gpu/drm/openchrome/openchrome_crtc_hw.c diff --git a/drivers/gpu/drm/openchrome/via_display.c b/drivers/gpu/drm/openchrome/openchrome_display.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_display.c rename to drivers/gpu/drm/openchrome/openchrome_display.c diff --git a/drivers/gpu/drm/openchrome/via_drv.c b/drivers/gpu/drm/openchrome/openchrome_drv.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_drv.c rename to drivers/gpu/drm/openchrome/openchrome_drv.c diff --git a/drivers/gpu/drm/openchrome/via_fb.c b/drivers/gpu/drm/openchrome/openchrome_fb.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_fb.c rename to drivers/gpu/drm/openchrome/openchrome_fb.c diff --git a/drivers/gpu/drm/openchrome/via_fence.c b/drivers/gpu/drm/openchrome/openchrome_fence.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_fence.c rename to drivers/gpu/drm/openchrome/openchrome_fence.c diff --git a/drivers/gpu/drm/openchrome/via_fp.c b/drivers/gpu/drm/openchrome/openchrome_fp.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_fp.c rename to drivers/gpu/drm/openchrome/openchrome_fp.c diff --git a/drivers/gpu/drm/openchrome/ttm_gem.c b/drivers/gpu/drm/openchrome/openchrome_gem.c similarity index 100% rename from drivers/gpu/drm/openchrome/ttm_gem.c rename to drivers/gpu/drm/openchrome/openchrome_gem.c diff --git a/drivers/gpu/drm/openchrome/via_h1_cmdbuf.c b/drivers/gpu/drm/openchrome/openchrome_h1_cmdbuf.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_h1_cmdbuf.c rename to drivers/gpu/drm/openchrome/openchrome_h1_cmdbuf.c diff --git a/drivers/gpu/drm/openchrome/via_h1_dma.c b/drivers/gpu/drm/openchrome/openchrome_h1_dma.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_h1_dma.c rename to drivers/gpu/drm/openchrome/openchrome_h1_dma.c diff --git a/drivers/gpu/drm/openchrome/via_hdmi.c b/drivers/gpu/drm/openchrome/openchrome_hdmi.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_hdmi.c rename to drivers/gpu/drm/openchrome/openchrome_hdmi.c diff --git a/drivers/gpu/drm/openchrome/via_i2c.c b/drivers/gpu/drm/openchrome/openchrome_i2c.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_i2c.c rename to drivers/gpu/drm/openchrome/openchrome_i2c.c diff --git a/drivers/gpu/drm/openchrome/via_ioc32.c b/drivers/gpu/drm/openchrome/openchrome_ioc32.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_ioc32.c rename to drivers/gpu/drm/openchrome/openchrome_ioc32.c diff --git a/drivers/gpu/drm/openchrome/via_irq.c b/drivers/gpu/drm/openchrome/openchrome_irq.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_irq.c rename to drivers/gpu/drm/openchrome/openchrome_irq.c diff --git a/drivers/gpu/drm/openchrome/via_pm.c b/drivers/gpu/drm/openchrome/openchrome_pm.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_pm.c rename to drivers/gpu/drm/openchrome/openchrome_pm.c diff --git a/drivers/gpu/drm/openchrome/via_sgdma.c b/drivers/gpu/drm/openchrome/openchrome_sgdma.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_sgdma.c rename to drivers/gpu/drm/openchrome/openchrome_sgdma.c diff --git a/drivers/gpu/drm/openchrome/via_tmds.c b/drivers/gpu/drm/openchrome/openchrome_tmds.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_tmds.c rename to drivers/gpu/drm/openchrome/openchrome_tmds.c diff --git a/drivers/gpu/drm/openchrome/via_ttm.c b/drivers/gpu/drm/openchrome/openchrome_ttm.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_ttm.c rename to drivers/gpu/drm/openchrome/openchrome_ttm.c diff --git a/drivers/gpu/drm/openchrome/via_verifier.c b/drivers/gpu/drm/openchrome/openchrome_verifier.c similarity index 100% rename from drivers/gpu/drm/openchrome/via_verifier.c rename to drivers/gpu/drm/openchrome/openchrome_verifier.c _______________________________________________ Openchrome-devel mailing list Openchrome-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/openchrome-devel