aboutsummaryrefslogtreecommitdiff
path: root/drivers/ata/Kconfig
AgeCommit message (Collapse)AuthorFilesLines
2017-08-01Merge git://git.denx.de/u-boot-x86Tom Rini1-0/+6
2017-08-01dm: scsi: Add a generic PCI-based AHCI driverBin Meng1-0/+6
This adds support for PCI-based AHCI controller based on DM SCSI. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org>
2017-08-01dm: scsi: Drop duplicate SCSI and DM_SCSI optionsSimon Glass1-18/+0
When the SATA code was moved into drivers/ata these Kconfig options were added to that directory. They already exist in drivers/scsi. Remove them from drivers/ata to fix the duplication. Signed-off-by: Simon Glass <sjg@chromium.org> Fixes: 7f2b5f4 (sata: Move drivers into new drivers/ata directory)
2017-07-11sata: Move drivers into new drivers/ata directorySimon Glass1-0/+62
At present we have the SATA and PATA drivers mixed up in the drivers/block directory. It is better to split them out into their own place. Use drivers/ata which is what Linux does. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>