Deleted Added
full compact
pci_cfgreg.h (139790) pci_cfgreg.h (203884)
1/*-
1/*-
2 * Copyright (c) 2010 Marcel Moolenaar <marcel@FreeBSD.org>
2 * Copyright (c) 1997, Stefan Esser <se@freebsd.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice unmodified, this list of conditions, and the following

--- 8 unchanged lines hidden (view full) ---

18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
3 * Copyright (c) 1997, Stefan Esser <se@freebsd.org>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice unmodified, this list of conditions, and the following

--- 8 unchanged lines hidden (view full) ---

19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 *
26 * $FreeBSD: head/sys/ia64/include/pci_cfgreg.h 139790 2005-01-06 22:18:23Z imp $
27 *
27 * $FreeBSD: head/sys/ia64/include/pci_cfgreg.h 203884 2010-02-14 17:03:20Z marcel $
28 */
29
28 */
29
30extern int pci_cfgregopen(void);
31extern u_int32_t pci_cfgregread(int bus, int slot, int func, int reg, int bytes);
32extern void pci_cfgregwrite(int bus, int slot, int func, int reg, u_int32_t data, int bytes);
30#ifndef _MACHINE_PCI_CFGREG_H_
31#define _MACHINE_PCI_CFGREG_H_
32
33int pci_cfgregopen(void);
34uint32_t pci_cfgregread(int bus, int slot, int func, int reg, int len);
35void pci_cfgregwrite(int bus, int slot, int func, int reg, uint32_t data,
36 int bytes);
37
38#endif /* _MACHINE_PCI_CFGREG_H_ */