From e357d03ae84760da0611aa58b3ce64f464a7c092 Mon Sep 17 00:00:00 2001 From: Wolfram Sang Date: Wed, 25 Apr 2012 22:29:43 +0200 Subject: [PATCH] i2c: muxes: rename first set of drivers to a standard pattern Apply a naming pattern like in the rest of the subsystem to a first set of mux drivers. Those drivers are the low-hanging fruit; we want to pick them to motivate upcoming drivers to follow the new pattern. The missing GPIO driver will be converted in a later patch. Signed-off-by: Wolfram Sang Acked-by: Guenter Roeck (pca9541) Acked-by: Jean Delvare --- MAINTAINERS | 2 +- drivers/i2c/muxes/Kconfig | 4 ++-- drivers/i2c/muxes/Makefile | 4 ++-- drivers/i2c/muxes/{pca9541.c => i2c-mux-pca9541.c} | 0 drivers/i2c/muxes/{pca954x.c => i2c-mux-pca954x.c} | 0 5 files changed, 5 insertions(+), 5 deletions(-) rename drivers/i2c/muxes/{pca9541.c => i2c-mux-pca9541.c} (100%) rename drivers/i2c/muxes/{pca954x.c => i2c-mux-pca954x.c} (100%) diff --git a/MAINTAINERS b/MAINTAINERS index 1a2f8f5823e0..af5d502d4eb8 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -5106,7 +5106,7 @@ PCA9541 I2C BUS MASTER SELECTOR DRIVER M: Guenter Roeck L: linux-i2c@vger.kernel.org S: Maintained -F: drivers/i2c/muxes/pca9541.c +F: drivers/i2c/muxes/i2c-mux-pca9541.c PCA9564/PCA9665 I2C BUS DRIVER M: Wolfram Sang diff --git a/drivers/i2c/muxes/Kconfig b/drivers/i2c/muxes/Kconfig index 90b7a0163899..e14a4205e5c6 100644 --- a/drivers/i2c/muxes/Kconfig +++ b/drivers/i2c/muxes/Kconfig @@ -25,7 +25,7 @@ config I2C_MUX_PCA9541 I2C Master Selector. This driver can also be built as a module. If so, the module - will be called pca9541. + will be called i2c-mux-pca9541. config I2C_MUX_PCA954x tristate "Philips PCA954x I2C Mux/switches" @@ -35,6 +35,6 @@ config I2C_MUX_PCA954x I2C mux/switch devices. This driver can also be built as a module. If so, the module - will be called pca954x. + will be called i2c-mux-pca954x. endmenu diff --git a/drivers/i2c/muxes/Makefile b/drivers/i2c/muxes/Makefile index 4640436ea61f..0868335cff11 100644 --- a/drivers/i2c/muxes/Makefile +++ b/drivers/i2c/muxes/Makefile @@ -2,7 +2,7 @@ # Makefile for multiplexer I2C chip drivers. obj-$(CONFIG_I2C_MUX_GPIO) += gpio-i2cmux.o -obj-$(CONFIG_I2C_MUX_PCA9541) += pca9541.o -obj-$(CONFIG_I2C_MUX_PCA954x) += pca954x.o +obj-$(CONFIG_I2C_MUX_PCA9541) += i2c-mux-pca9541.o +obj-$(CONFIG_I2C_MUX_PCA954x) += i2c-mux-pca954x.o ccflags-$(CONFIG_I2C_DEBUG_BUS) := -DDEBUG diff --git a/drivers/i2c/muxes/pca9541.c b/drivers/i2c/muxes/i2c-mux-pca9541.c similarity index 100% rename from drivers/i2c/muxes/pca9541.c rename to drivers/i2c/muxes/i2c-mux-pca9541.c diff --git a/drivers/i2c/muxes/pca954x.c b/drivers/i2c/muxes/i2c-mux-pca954x.c similarity index 100% rename from drivers/i2c/muxes/pca954x.c rename to drivers/i2c/muxes/i2c-mux-pca954x.c -- 2.39.5