Change to SI_ORDER_FIRST to make sure this module runs before

the bktr module if both are loaded at the same time (eg in the boot
loader)
This commit is contained in:
Roger Hardiman 2000-09-11 10:37:27 +00:00
parent 8aab42e13f
commit 403cbdd892

View File

@ -169,5 +169,6 @@ static moduledata_t bktr_mem_mod = {
bktr_mem_modevent,
0
};
DECLARE_MODULE(bktr_mem, bktr_mem_mod, SI_SUB_PSEUDO, SI_ORDER_ANY);
/* The load order is First so bktr_mem loads (and initialises) before bktr */
DECLARE_MODULE(bktr_mem, bktr_mem_mod, SI_SUB_PSEUDO, SI_ORDER_FIRST);
MODULE_VERSION(bktr_mem, 1);