blob: f40b82edf518f9f4b0ed857f1c8757dfebb55e45 [file]
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include "tables.h"
#include "x86_init_fn.h"
#include "pci.h"
#include "bootparam.h"
void early_init_pci(void) {
sleep(1);
}
bool detect_pci(void) {
return true;
}
X86_INIT_EARLY_ALL(pci, detect_pci, NULL, early_init_pci, NULL, NULL);