mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 14:49:36 -04:00
change SYSINIT starting point to be consistent with other modules
This commit is contained in:
parent
6fd91c14d6
commit
8976be9465
2 changed files with 2 additions and 2 deletions
|
|
@ -957,4 +957,4 @@ esp_attach(void)
|
|||
xform_register(&esp_xformsw);
|
||||
#undef MAXIV
|
||||
}
|
||||
SYSINIT(esp_xform_init, SI_SUB_DRIVERS, SI_ORDER_FIRST, esp_attach, NULL)
|
||||
SYSINIT(esp_xform_init, SI_SUB_PROTO_DOMAIN, SI_ORDER_MIDDLE, esp_attach, NULL);
|
||||
|
|
|
|||
|
|
@ -596,4 +596,4 @@ ipcomp_attach(void)
|
|||
{
|
||||
xform_register(&ipcomp_xformsw);
|
||||
}
|
||||
SYSINIT(ipcomp_xform_init, SI_SUB_DRIVERS, SI_ORDER_FIRST, ipcomp_attach, NULL)
|
||||
SYSINIT(ipcomp_xform_init, SI_SUB_PROTO_DOMAIN, SI_ORDER_MIDDLE, ipcomp_attach, NULL);
|
||||
|
|
|
|||
Loading…
Reference in a new issue