Previous commit folded existing ufs-uclass.c into ufs.c , which produced a nice and reviewable change , but also broke the UCLASS should be in *-uclass.c pattern. Fix it. Keep the change separate from the previous one to make this reviewable.
Signed-off-by: Marek Vasut <[email protected]> --- Cc: Bhupesh Sharma <[email protected]> Cc: Casey Connolly <[email protected]> Cc: Michal Simek <[email protected]> Cc: Neha Malcom Francis <[email protected]> Cc: Neil Armstrong <[email protected]> Cc: Nobuhiro Iwamatsu <[email protected]> Cc: Sumit Garg <[email protected]> Cc: Tom Rini <[email protected]> Cc: Tuyen Dang <[email protected]> Cc: Venkatesh Yadav Abbarapu <[email protected]> Cc: Yoshihiro Shimoda <[email protected]> Cc: [email protected] Cc: [email protected] --- V2: New patch --- drivers/ufs/Makefile | 2 +- drivers/ufs/{ufs.c => ufs-uclass.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename drivers/ufs/{ufs.c => ufs-uclass.c} (100%) diff --git a/drivers/ufs/Makefile b/drivers/ufs/Makefile index 2ac410cf7c3..17ca89e886f 100644 --- a/drivers/ufs/Makefile +++ b/drivers/ufs/Makefile @@ -3,7 +3,7 @@ # Copyright (C) 2019 Texas Instruments Incorporated - https://www.ti.com # -obj-$(CONFIG_UFS) += ufs.o +obj-$(CONFIG_UFS) += ufs-uclass.o obj-$(CONFIG_CADENCE_UFS) += cdns-platform.o obj-$(CONFIG_QCOM_UFS) += ufs-qcom.o obj-$(CONFIG_TI_J721E_UFS) += ti-j721e-ufs.o diff --git a/drivers/ufs/ufs.c b/drivers/ufs/ufs-uclass.c similarity index 100% rename from drivers/ufs/ufs.c rename to drivers/ufs/ufs-uclass.c -- 2.51.0

