aboutsummaryrefslogtreecommitdiff
path: root/drivers/pci/pci_sandbox.c
AgeCommit message (Collapse)AuthorFilesLines
2016-07-27dm: Use dm_scan_fdt_dev() directly where possibleSimon Glass1-7/+3
Quite a few places have a bind() method which just calls dm_scan_fdt_dev(). We may as well call dm_scan_fdt_dev() directly. Update the code to do this. Signed-off-by: Simon Glass <sjg@chromium.org>
2016-07-27dm: Convert users from dm_scan_fdt_node() to dm_scan_fdt_dev()Simon Glass1-2/+1
This new function is more convenient for callers, and handles pre-relocation situations automatically. Signed-off-by: Simon Glass <sjg@chromium.org>
2015-04-16dm: sandbox: Add a simple PCI driverSimon Glass1-0/+79
Add a driver which can access emulations of devices and make them available in sandbox. Signed-off-by: Simon Glass <sjg@chromium.org>