1// Copyright 2016 The Fuchsia Authors
2// Copyright (c) 2016, Google, Inc. All rights reserved
3//
4// Use of this source code is governed by a MIT-style
5// license that can be found in the LICENSE file or at
6// https://opensource.org/licenses/MIT
7
8#include <dev/pcie_root.h>
9
10#define LOCAL_TRACE 0
11
12PcieRoot::PcieRoot(PcieBusDriver& bus_drv, uint mbus_id)
13    : PcieUpstreamNode(bus_drv, PcieUpstreamNode::Type::ROOT, mbus_id),
14      bus_drv_(bus_drv) {
15}
16