diff options
author | Furquan Shaikh <furquan@google.com> | 2018-09-29 23:41:45 -0700 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2018-10-06 00:01:20 +0000 |
commit | 84f2c63590abb37d8ac51f4f50b116eae517e2f4 (patch) | |
tree | 6da0ead653f20a883aa3afb9648ed16dea26fcba /src | |
parent | 31bff01a7281d62e3bd3b158832ebca8c37c265e (diff) | |
download | coreboot-84f2c63590abb37d8ac51f4f50b116eae517e2f4.tar.xz |
soc/intel/common/block/hda: Enable static scanning of devices under HDA
This change sets scan_bus operation for HDA to scan_static_bus to
allow enumeration of static devices under HDA.
BUG=b:112888584
TEST=Verified that devices added under HDA get enumerated on Nocturne.
Change-Id: I20759c2b702b2f107f0913e7ce92a82c6070ddc4
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/28807
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/common/block/hda/hda.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/hda/hda.c b/src/soc/intel/common/block/hda/hda.c index 97efba29ee..2409b75664 100644 --- a/src/soc/intel/common/block/hda/hda.c +++ b/src/soc/intel/common/block/hda/hda.c @@ -68,6 +68,7 @@ static struct device_operations hda_ops = { .init = &hda_init, #endif .ops_pci = &pci_dev_ops_pci, + .scan_bus = &scan_static_bus, }; static const unsigned short pci_device_ids[] = { |