spi/mpc8xxx: rename spi_mpc8xxx.c to spi_fsl_spi.c

This will pave the way to refactor out the common code which can be used
by the eSPI controller driver, and rename the SPI controller dirver to the
file spi_fsl_spi.c.

Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>

authored by

Mingkai Hu and committed by
Grant Likely
3272029f 492c032b

+6 -5
+5 -4
drivers/spi/Kconfig
··· 182 182 This enables using the Freescale MPC5121 Programmable Serial 183 183 Controller in SPI master mode. 184 184 185 - config SPI_MPC8xxx 186 - tristate "Freescale MPC8xxx SPI controller" 185 + config SPI_FSL_SPI 186 + tristate "Freescale SPI controller" 187 187 depends on FSL_SOC 188 188 help 189 - This enables using the Freescale MPC8xxx SPI controllers in master 190 - mode. 189 + This enables using the Freescale SPI controllers in master mode. 190 + MPC83xx platform uses the controller in cpu mode or CPM/QE mode. 191 + MPC8569 uses the controller in QE mode, MPC8610 in cpu mode. 191 192 192 193 config SPI_OMAP_UWIRE 193 194 tristate "OMAP1 MicroWire"
+1 -1
drivers/spi/Makefile
··· 32 32 obj-$(CONFIG_SPI_MPC512x_PSC) += mpc512x_psc_spi.o 33 33 obj-$(CONFIG_SPI_MPC52xx_PSC) += mpc52xx_psc_spi.o 34 34 obj-$(CONFIG_SPI_MPC52xx) += mpc52xx_spi.o 35 - obj-$(CONFIG_SPI_MPC8xxx) += spi_mpc8xxx.o 35 + obj-$(CONFIG_SPI_FSL_SPI) += spi_fsl_spi.o 36 36 obj-$(CONFIG_SPI_PPC4xx) += spi_ppc4xx.o 37 37 obj-$(CONFIG_SPI_S3C24XX_GPIO) += spi_s3c24xx_gpio.o 38 38 obj-$(CONFIG_SPI_S3C24XX) += spi_s3c24xx_hw.o
drivers/spi/spi_mpc8xxx.c drivers/spi/spi_fsl_spi.c