Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

powerpc/83xx: Move mcu_mpc8349emitx driver out of drivers/i2c/chips/

This patch is used to help Jean Delvare to get rid of drivers/i2c/chips/
directory. The new location suggested by Kumar Gala: as the driver is
83xx specific it's placed into arch/powerpc/platforms/83xx/.

Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Acked-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>

authored by

Anton Vorontsov and committed by
Kumar Gala
ea0105ea 6c9789de

+12 -12
+1
arch/powerpc/platforms/83xx/Makefile
··· 3 3 # 4 4 obj-y := misc.o usb.o 5 5 obj-$(CONFIG_SUSPEND) += suspend.o suspend-asm.o 6 + obj-$(CONFIG_MCU_MPC8349EMITX) += mcu_mpc8349emitx.o 6 7 obj-$(CONFIG_MPC831x_RDB) += mpc831x_rdb.o 7 8 obj-$(CONFIG_MPC832x_RDB) += mpc832x_rdb.o 8 9 obj-$(CONFIG_MPC834x_MDS) += mpc834x_mds.o
+11
arch/powerpc/platforms/Kconfig
··· 323 323 chip-selects, Ethernet/USB PHY's power and various other small 324 324 on-board peripherals. 325 325 326 + config MCU_MPC8349EMITX 327 + tristate "MPC8349E-mITX MCU driver" 328 + depends on I2C && PPC_83xx 329 + select GENERIC_GPIO 330 + select ARCH_REQUIRE_GPIOLIB 331 + help 332 + Say Y here to enable soft power-off functionality on the Freescale 333 + boards with the MPC8349E-mITX-compatible MCU chips. This driver will 334 + also register MCU GPIOs with the generic GPIO API, so you'll able 335 + to use MCU pins as GPIOs. 336 + 326 337 endmenu
-11
drivers/i2c/chips/Kconfig
··· 139 139 This driver can also be built as a module. If so, the module 140 140 will be called tsl2550. 141 141 142 - config MCU_MPC8349EMITX 143 - tristate "MPC8349E-mITX MCU driver" 144 - depends on I2C && PPC_83xx 145 - select GENERIC_GPIO 146 - select ARCH_REQUIRE_GPIOLIB 147 - help 148 - Say Y here to enable soft power-off functionality on the Freescale 149 - boards with the MPC8349E-mITX-compatible MCU chips. This driver will 150 - also register MCU GPIOs with the generic GPIO API, so you'll able 151 - to use MCU pins as GPIOs. 152 - 153 142 endmenu
-1
drivers/i2c/chips/Makefile
··· 19 19 obj-$(CONFIG_PCF8575) += pcf8575.o 20 20 obj-$(CONFIG_SENSORS_PCF8591) += pcf8591.o 21 21 obj-$(CONFIG_SENSORS_TSL2550) += tsl2550.o 22 - obj-$(CONFIG_MCU_MPC8349EMITX) += mcu_mpc8349emitx.o 23 22 24 23 ifeq ($(CONFIG_I2C_DEBUG_CHIP),y) 25 24 EXTRA_CFLAGS += -DDEBUG
drivers/i2c/chips/mcu_mpc8349emitx.c arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c