diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2015-02-20 21:28:31 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2015-06-04 11:22:09 +0200 |
commit | 2d2367cd95dc6ab2dd51b1005675e42bab417769 (patch) | |
tree | 6f947cec24aa97e89b833c42297f010e740afd4c /src/include/device | |
parent | de271a8f0a9b5d910ee98eeea25f71d4e1536f73 (diff) | |
download | coreboot-2d2367cd95dc6ab2dd51b1005675e42bab417769.tar.xz |
devicetree: Single scan_bridges()
Change-Id: Ifd277992a69a4182e2fac92aaf746abe4fec2a1b
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/8540
Tested-by: build bot (Jenkins)
Reviewed-by: Timothy Pearson <tpearson@raptorengineeringinc.com>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/include/device')
-rw-r--r-- | src/include/device/device.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/device/device.h b/src/include/device/device.h index aec1af5279..84a17d025c 100644 --- a/src/include/device/device.h +++ b/src/include/device/device.h @@ -172,7 +172,7 @@ void dev_finalize_chips(void); /* Generic device helper functions */ int reset_bus(struct bus *bus); -unsigned int scan_bus(struct device *bus, unsigned int _max); +void scan_bridges(struct bus *bus); void assign_resources(struct bus *bus); const char *dev_name(device_t dev); const char *dev_path(device_t dev); |