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

ata: ahci_brcmstb: rename to support across Broadcom SoC's

Rename the existing Broadcom STB ahci driver to common
Broadcom SATA3 driver to share this across Broadcom SoCs.

Signed-off-by: Yendapally Reddy Dhananjaya Reddy <yendapally.reddy@broadcom.com>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>

authored by

Yendapally Reddy Dhananjaya Reddy and committed by
Tejun Heo
eba68f82 a55448d1

+4 -4
+3 -3
drivers/ata/Kconfig
··· 98 98 99 99 If unsure, say N. 100 100 101 - config AHCI_BRCMSTB 102 - tristate "Broadcom STB AHCI SATA support" 101 + config AHCI_BRCM 102 + tristate "Broadcom AHCI SATA support" 103 103 depends on ARCH_BRCMSTB || BMIPS_GENERIC 104 104 help 105 105 This option enables support for the AHCI SATA3 controller found on 106 - STB SoC's. 106 + Broadcom SoC's. 107 107 108 108 If unsure, say N. 109 109
+1 -1
drivers/ata/Makefile
··· 11 11 obj-$(CONFIG_SATA_SIL24) += sata_sil24.o 12 12 obj-$(CONFIG_SATA_DWC) += sata_dwc_460ex.o 13 13 obj-$(CONFIG_SATA_HIGHBANK) += sata_highbank.o libahci.o 14 - obj-$(CONFIG_AHCI_BRCMSTB) += ahci_brcmstb.o libahci.o libahci_platform.o 14 + obj-$(CONFIG_AHCI_BRCM) += ahci_brcm.o libahci.o libahci_platform.o 15 15 obj-$(CONFIG_AHCI_CEVA) += ahci_ceva.o libahci.o libahci_platform.o 16 16 obj-$(CONFIG_AHCI_DA850) += ahci_da850.o libahci.o libahci_platform.o 17 17 obj-$(CONFIG_AHCI_IMX) += ahci_imx.o libahci.o libahci_platform.o
drivers/ata/ahci_brcmstb.c drivers/ata/ahci_brcm.c