blob: c506b9b17a24c4ff9a37dc4b77872202683428f8 [file] [log] [blame]
#include <linux/kernel.h>
#include <linux/pci.h>
#include <asm/x86_init_fn.h>
static void early_init_driver(void) {
sleep(2);
}
static bool detect_driver(void) {
return true;
}
X86_INIT_NORMAL_PC(acme, detect_driver, detect_pci,
early_init_driver, NULL, NULL);