Some code cleanups:

o   s/u_int32_t/uint32_t/g
o   Add multiple-inclusion protection.
o   Break long lines.
This commit is contained in:
Marcel Moolenaar 2010-02-14 17:03:20 +00:00
parent 26279767e4
commit 438e84ae72
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=203884

View File

@ -1,4 +1,5 @@
/*-
* Copyright (c) 2010 Marcel Moolenaar <marcel@FreeBSD.org>
* Copyright (c) 1997, Stefan Esser <se@freebsd.org>
* All rights reserved.
*
@ -24,9 +25,14 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $FreeBSD$
*
*/
extern int pci_cfgregopen(void);
extern u_int32_t pci_cfgregread(int bus, int slot, int func, int reg, int bytes);
extern void pci_cfgregwrite(int bus, int slot, int func, int reg, u_int32_t data, int bytes);
#ifndef _MACHINE_PCI_CFGREG_H_
#define _MACHINE_PCI_CFGREG_H_
int pci_cfgregopen(void);
uint32_t pci_cfgregread(int bus, int slot, int func, int reg, int len);
void pci_cfgregwrite(int bus, int slot, int func, int reg, uint32_t data,
int bytes);
#endif /* _MACHINE_PCI_CFGREG_H_ */