From af4c874f11534b2db3cd3f9f76e47063f842f566 Mon Sep 17 00:00:00 2001 From: Jernej Skrabec Date: Fri, 19 May 2017 17:41:14 +0200 Subject: [PATCH] sunxi: video: Rename tve.c to tve_common.c In order to avoid future confusion with similary named files, rename tve.c to tve_common.c. New name better represents the fact that this file holds code which can be and will be shared between multiple drivers. Signed-off-by: Jernej Skrabec Acked-by: Maxime Ripard Reviewed-by: Simon Glass --- drivers/video/sunxi/Makefile | 2 +- drivers/video/sunxi/{tve.c => tve_common.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename drivers/video/sunxi/{tve.c => tve_common.c} (100%) diff --git a/drivers/video/sunxi/Makefile b/drivers/video/sunxi/Makefile index dbaab61..0d64c20 100644 --- a/drivers/video/sunxi/Makefile +++ b/drivers/video/sunxi/Makefile @@ -5,5 +5,5 @@ # SPDX-License-Identifier: GPL-2.0+ # -obj-$(CONFIG_VIDEO_SUNXI) += sunxi_display.o lcdc.o tve.o ../videomodes.o +obj-$(CONFIG_VIDEO_SUNXI) += sunxi_display.o lcdc.o tve_common.o ../videomodes.o obj-$(CONFIG_VIDEO_DE2) += sunxi_de2.o sunxi_dw_hdmi.o lcdc.o ../dw_hdmi.o diff --git a/drivers/video/sunxi/tve.c b/drivers/video/sunxi/tve_common.c similarity index 100% rename from drivers/video/sunxi/tve.c rename to drivers/video/sunxi/tve_common.c -- 2.7.4