mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
git-svn-id: svn://coreboot.org/openbios/openbios-devel@4 f158a5a8-5612-0410-a976-696ce0be7e32
27 lines
505 B
C
27 lines
505 B
C
/*
|
|
* OpenBIOS driver prototypes
|
|
*
|
|
* (C) 2004 Stefan Reinauer <stepan@openbios.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* version 2
|
|
*
|
|
*/
|
|
|
|
#include "openbios/config.h"
|
|
|
|
#ifdef CONFIG_DRIVER_PCI
|
|
int ob_pci_init(void);
|
|
#endif
|
|
#ifdef CONFIG_DRIVER_SBUS
|
|
int ob_sbus_init(void);
|
|
#endif
|
|
#ifdef CONFIG_DRIVER_IDE
|
|
int ob_ide_init(void);
|
|
#endif
|
|
#ifdef CONFIG_DRIVER_ESP
|
|
int ob_esp_init(void);
|
|
#endif
|
|
|