xref: /openbmc/qemu/hw/acpi/pci-bridge-stub.c (revision 6c36ec46)
1*6c36ec46SIgor Mammedov /*
2*6c36ec46SIgor Mammedov  * QEMU ACPI PCI bridge stub
3*6c36ec46SIgor Mammedov  *
4*6c36ec46SIgor Mammedov  * Copyright (c) 2023 Red Hat, Inc.
5*6c36ec46SIgor Mammedov  *
6*6c36ec46SIgor Mammedov  * Author:
7*6c36ec46SIgor Mammedov  *   Igor Mammedov <imammedo@redhat.com>
8*6c36ec46SIgor Mammedov  *
9*6c36ec46SIgor Mammedov  * SPDX-License-Identifier: GPL-2.0-or-later
10*6c36ec46SIgor Mammedov  *
11*6c36ec46SIgor Mammedov  * This work is licensed under the terms of the GNU GPL, version 2 or later.
12*6c36ec46SIgor Mammedov  * See the COPYING file in the top-level directory.
13*6c36ec46SIgor Mammedov  */
14*6c36ec46SIgor Mammedov 
15*6c36ec46SIgor Mammedov #include "qemu/osdep.h"
16*6c36ec46SIgor Mammedov #include "hw/acpi/pci.h"
17*6c36ec46SIgor Mammedov 
build_pci_bridge_aml(AcpiDevAmlIf * adev,Aml * scope)18*6c36ec46SIgor Mammedov void build_pci_bridge_aml(AcpiDevAmlIf *adev, Aml *scope)
19*6c36ec46SIgor Mammedov {
20*6c36ec46SIgor Mammedov }
21