- Whitespace and indentation fixes in various places. - Fix various typos. - Use u8, u16 etc. everywhere. Abuild-tested. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5962 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
12 lines
379 B
C
12 lines
379 B
C
#ifndef DEVICE_PCIEXP_H
|
|
#define DEVICE_PCIEXP_H
|
|
/* (c) 2005 Linux Networx GPL see COPYING for details */
|
|
|
|
unsigned int pciexp_scan_bus(struct bus *bus, unsigned int min_devfn,
|
|
unsigned int max_devfn, unsigned int max);
|
|
unsigned int pciexp_scan_bridge(device_t dev, unsigned int max);
|
|
|
|
extern struct device_operations default_pciexp_ops_bus;
|
|
|
|
#endif /* DEVICE_PCIEXP_H */
|