xref: /illumos-gate/usr/src/lib/fm/topo/modules/i86pc/pcibus/pci_i86pc.c (revision 7aec1d6e253b21f9e9b7ef68b4d81ab9859b51fe)
1*7aec1d6eScindi /*
2*7aec1d6eScindi  * CDDL HEADER START
3*7aec1d6eScindi  *
4*7aec1d6eScindi  * The contents of this file are subject to the terms of the
5*7aec1d6eScindi  * Common Development and Distribution License (the "License").
6*7aec1d6eScindi  * You may not use this file except in compliance with the License.
7*7aec1d6eScindi  *
8*7aec1d6eScindi  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*7aec1d6eScindi  * or http://www.opensolaris.org/os/licensing.
10*7aec1d6eScindi  * See the License for the specific language governing permissions
11*7aec1d6eScindi  * and limitations under the License.
12*7aec1d6eScindi  *
13*7aec1d6eScindi  * When distributing Covered Code, include this CDDL HEADER in each
14*7aec1d6eScindi  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*7aec1d6eScindi  * If applicable, add the following below this CDDL HEADER, with the
16*7aec1d6eScindi  * fields enclosed by brackets "[]" replaced with your own identifying
17*7aec1d6eScindi  * information: Portions Copyright [yyyy] [name of copyright owner]
18*7aec1d6eScindi  *
19*7aec1d6eScindi  * CDDL HEADER END
20*7aec1d6eScindi  */
21*7aec1d6eScindi 
22*7aec1d6eScindi /*
23*7aec1d6eScindi  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24*7aec1d6eScindi  * Use is subject to license terms.
25*7aec1d6eScindi  */
26*7aec1d6eScindi 
27*7aec1d6eScindi #pragma ident	"%Z%%M%	%I%	%E% SMI"
28*7aec1d6eScindi 
29*7aec1d6eScindi #include <fm/topo_mod.h>
30*7aec1d6eScindi 
31*7aec1d6eScindi #include "pcibus.h"
32*7aec1d6eScindi #include "pcibus_labels.h"
33*7aec1d6eScindi 
34*7aec1d6eScindi slotnm_rewrite_t *Slot_Rewrites = NULL;
35*7aec1d6eScindi physlot_names_t *Physlot_Names = NULL;
36*7aec1d6eScindi missing_names_t *Missing_Names = NULL;
37*7aec1d6eScindi 
38*7aec1d6eScindi int
39*7aec1d6eScindi platform_pci_label(tnode_t *node, nvlist_t *in, nvlist_t **out)
40*7aec1d6eScindi {
41*7aec1d6eScindi 	return (pci_label_cmn(node, in, out));
42*7aec1d6eScindi }
43