diff --git a/drivers/mux/Makefile b/drivers/mux/Makefile index 6bac5b0fea13..0e1e59760e3f 100644 --- a/drivers/mux/Makefile +++ b/drivers/mux/Makefile @@ -2,6 +2,11 @@ # Makefile for multiplexer devices. # +mux-core-objs := core.o +mux-adg792a-objs := adg792a.o +mux-gpio-objs := gpio.o +mux-mmio-objs := mmio.o + obj-$(CONFIG_MULTIPLEXER) += mux-core.o obj-$(CONFIG_MUX_ADG792A) += mux-adg792a.o obj-$(CONFIG_MUX_GPIO) += mux-gpio.o diff --git a/drivers/mux/mux-adg792a.c b/drivers/mux/adg792a.c similarity index 100% rename from drivers/mux/mux-adg792a.c rename to drivers/mux/adg792a.c diff --git a/drivers/mux/mux-core.c b/drivers/mux/core.c similarity index 100% rename from drivers/mux/mux-core.c rename to drivers/mux/core.c diff --git a/drivers/mux/mux-gpio.c b/drivers/mux/gpio.c similarity index 100% rename from drivers/mux/mux-gpio.c rename to drivers/mux/gpio.c diff --git a/drivers/mux/mux-mmio.c b/drivers/mux/mmio.c similarity index 100% rename from drivers/mux/mux-mmio.c rename to drivers/mux/mmio.c