1*65252317SJohn Baldwin /*- 2*65252317SJohn Baldwin * Copyright (c) 2016 John Baldwin <jhb@FreeBSD.org> 3*65252317SJohn Baldwin * 4*65252317SJohn Baldwin * Redistribution and use in source and binary forms, with or without 5*65252317SJohn Baldwin * modification, are permitted provided that the following conditions 6*65252317SJohn Baldwin * are met: 7*65252317SJohn Baldwin * 1. Redistributions of source code must retain the above copyright 8*65252317SJohn Baldwin * notice, this list of conditions and the following disclaimer. 9*65252317SJohn Baldwin * 2. Redistributions in binary form must reproduce the above copyright 10*65252317SJohn Baldwin * notice, this list of conditions and the following disclaimer in the 11*65252317SJohn Baldwin * documentation and/or other materials provided with the distribution. 12*65252317SJohn Baldwin * 13*65252317SJohn Baldwin * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 14*65252317SJohn Baldwin * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15*65252317SJohn Baldwin * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16*65252317SJohn Baldwin * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 17*65252317SJohn Baldwin * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18*65252317SJohn Baldwin * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19*65252317SJohn Baldwin * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 20*65252317SJohn Baldwin * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 21*65252317SJohn Baldwin * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22*65252317SJohn Baldwin * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23*65252317SJohn Baldwin * SUCH DAMAGE. 24*65252317SJohn Baldwin */ 25*65252317SJohn Baldwin 26*65252317SJohn Baldwin #ifndef _ACPI_PCIVAR_H_ 27*65252317SJohn Baldwin #define _ACPI_PCIVAR_H_ 28*65252317SJohn Baldwin 29*65252317SJohn Baldwin #ifdef _KERNEL 30*65252317SJohn Baldwin 31*65252317SJohn Baldwin void acpi_pci_child_added(device_t dev, device_t child); 32*65252317SJohn Baldwin 33*65252317SJohn Baldwin #endif 34*65252317SJohn Baldwin 35*65252317SJohn Baldwin #endif /* !_ACPI_PCIVAR_H_ */ 36