1297679Sjhb/*-
2297679Sjhb * Copyright (c) 2016 John Baldwin <jhb@FreeBSD.org>
3297679Sjhb * All rights reserved.
4297679Sjhb *
5297679Sjhb * Redistribution and use in source and binary forms, with or without
6297679Sjhb * modification, are permitted provided that the following conditions
7297679Sjhb * are met:
8297679Sjhb * 1. Redistributions of source code must retain the above copyright
9297679Sjhb *    notice, this list of conditions and the following disclaimer.
10297679Sjhb * 2. Redistributions in binary form must reproduce the above copyright
11297679Sjhb *    notice, this list of conditions and the following disclaimer in the
12297679Sjhb *    documentation and/or other materials provided with the distribution.
13297679Sjhb *
14297679Sjhb * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15297679Sjhb * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16297679Sjhb * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17297679Sjhb * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18297679Sjhb * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19297679Sjhb * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20297679Sjhb * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21297679Sjhb * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22297679Sjhb * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23297679Sjhb * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24297679Sjhb * SUCH DAMAGE.
25297679Sjhb *
26297679Sjhb * $FreeBSD: releng/11.0/sys/dev/acpica/acpi_pcivar.h 297679 2016-04-07 17:15:16Z jhb $
27297679Sjhb */
28297679Sjhb
29297679Sjhb#ifndef	_ACPI_PCIVAR_H_
30297679Sjhb#define	_ACPI_PCIVAR_H_
31297679Sjhb
32297679Sjhb#ifdef _KERNEL
33297679Sjhb
34297679Sjhbvoid	acpi_pci_child_added(device_t dev, device_t child);
35297679Sjhb
36297679Sjhb#endif
37297679Sjhb
38297679Sjhb#endif /* !_ACPI_PCIVAR_H_ */
39