17c478bd9Sstevel@tonic-gate /* 2*8e56767dSsmall * CDDL HEADER START 3*8e56767dSsmall * 4*8e56767dSsmall * The contents of this file are subject to the terms of the 5*8e56767dSsmall * Common Development and Distribution License, Version 1.0 only 6*8e56767dSsmall * (the "License"). You may not use this file except in compliance 7*8e56767dSsmall * with the License. 8*8e56767dSsmall * 9*8e56767dSsmall * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*8e56767dSsmall * or http://www.opensolaris.org/os/licensing. 11*8e56767dSsmall * See the License for the specific language governing permissions 12*8e56767dSsmall * and limitations under the License. 13*8e56767dSsmall * 14*8e56767dSsmall * When distributing Covered Code, include this CDDL HEADER in each 15*8e56767dSsmall * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*8e56767dSsmall * If applicable, add the following below this CDDL HEADER, with the 17*8e56767dSsmall * fields enclosed by brackets "[]" replaced with your own identifying 18*8e56767dSsmall * information: Portions Copyright [yyyy] [name of copyright owner] 19*8e56767dSsmall * 20*8e56767dSsmall * CDDL HEADER END 21*8e56767dSsmall */ 22*8e56767dSsmall /* 237c478bd9Sstevel@tonic-gate * Copyright 2005 Sun Microsystems, Inc. All rights reserved. 247c478bd9Sstevel@tonic-gate * Use is subject to license terms. 257c478bd9Sstevel@tonic-gate */ 26*8e56767dSsmall #ifndef _ACPI_ENUM_H_ 27*8e56767dSsmall #define _ACPI_ENUM_H_ 287c478bd9Sstevel@tonic-gate 297c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 307c478bd9Sstevel@tonic-gate 31*8e56767dSsmall #ifdef __cplusplus 32*8e56767dSsmall extern "C" { 33*8e56767dSsmall #endif 34*8e56767dSsmall 357c478bd9Sstevel@tonic-gate /* 367c478bd9Sstevel@tonic-gate * ACPI enumerator 377c478bd9Sstevel@tonic-gate */ 387c478bd9Sstevel@tonic-gate 397c478bd9Sstevel@tonic-gate #include <sys/ddi.h> 407c478bd9Sstevel@tonic-gate #include <sys/sunddi.h> 417c478bd9Sstevel@tonic-gate #include <sys/sunndi.h> 427c478bd9Sstevel@tonic-gate 437c478bd9Sstevel@tonic-gate /* some externs */ 447c478bd9Sstevel@tonic-gate 457c478bd9Sstevel@tonic-gate int acpi_isa_device_enum(dev_info_t *isa_dip); 46*8e56767dSsmall 47*8e56767dSsmall #ifdef __cplusplus 48*8e56767dSsmall } 49*8e56767dSsmall #endif 50*8e56767dSsmall 51*8e56767dSsmall #endif /* _ACPI_ENUM_H_ */ 52