xref: /onnv-gate/usr/src/uts/intel/sys/acpi/acpi_enum.h (revision 34:5471efa2ccbb)
1*34Ssmall /*
2*34Ssmall  * CDDL HEADER START
3*34Ssmall  *
4*34Ssmall  * The contents of this file are subject to the terms of the
5*34Ssmall  * Common Development and Distribution License, Version 1.0 only
6*34Ssmall  * (the "License").  You may not use this file except in compliance
7*34Ssmall  * with the License.
8*34Ssmall  *
9*34Ssmall  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*34Ssmall  * or http://www.opensolaris.org/os/licensing.
11*34Ssmall  * See the License for the specific language governing permissions
12*34Ssmall  * and limitations under the License.
13*34Ssmall  *
14*34Ssmall  * When distributing Covered Code, include this CDDL HEADER in each
15*34Ssmall  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*34Ssmall  * If applicable, add the following below this CDDL HEADER, with the
17*34Ssmall  * fields enclosed by brackets "[]" replaced with your own identifying
18*34Ssmall  * information: Portions Copyright [yyyy] [name of copyright owner]
19*34Ssmall  *
20*34Ssmall  * CDDL HEADER END
21*34Ssmall  */
220Sstevel@tonic-gate /*
230Sstevel@tonic-gate  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
240Sstevel@tonic-gate  * Use is subject to license terms.
250Sstevel@tonic-gate  */
26*34Ssmall #ifndef	_ACPI_ENUM_H_
27*34Ssmall #define	_ACPI_ENUM_H_
280Sstevel@tonic-gate 
290Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
300Sstevel@tonic-gate 
31*34Ssmall #ifdef	__cplusplus
32*34Ssmall extern "C" {
33*34Ssmall #endif
34*34Ssmall 
350Sstevel@tonic-gate /*
360Sstevel@tonic-gate  * ACPI enumerator
370Sstevel@tonic-gate  */
380Sstevel@tonic-gate 
390Sstevel@tonic-gate #include <sys/ddi.h>
400Sstevel@tonic-gate #include <sys/sunddi.h>
410Sstevel@tonic-gate #include <sys/sunndi.h>
420Sstevel@tonic-gate 
430Sstevel@tonic-gate /* some externs */
440Sstevel@tonic-gate 
450Sstevel@tonic-gate int acpi_isa_device_enum(dev_info_t *isa_dip);
46*34Ssmall 
47*34Ssmall #ifdef	__cplusplus
48*34Ssmall }
49*34Ssmall #endif
50*34Ssmall 
51*34Ssmall #endif /* _ACPI_ENUM_H_ */
52