change SYSINIT starting point to be consistent with other modules

This commit is contained in:
Sam Leffler 2004-01-27 17:43:49 +00:00
parent 6fd91c14d6
commit 8976be9465
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=125099
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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);