summaryrefslogtreecommitdiffstats
path: root/drivers/block/disk-uclass.c
Commit message (Collapse)AuthorAgeFilesLines
* dm: Rename disk uclass to ahciSimon Glass2016-05-171-14/+0
| | | | | | | | This started as 'ahci' and was renamed to 'disk' during code review. But it seems that this is too generic. Now that we have a 'blk' uclass, we can use that as the generic piece, and revert to ahci for this. Signed-off-by: Simon Glass <sjg@chromium.org>
* ahci: Add a disk-controller uclassSimon Glass2016-01-241-0/+14
Add a uclass ID for a disk controller. This can be used by AHCI/SATA or other controller types. There are no operations and no interface so far, but it is possible to probe a SATA device. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>