diff options
author | Ian Moffett <ian@osmora.org> | 2025-05-29 00:01:06 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-05-29 00:01:06 -0400 |
commit | d61b159c3629290ba94ab14cdb44ae20ff3ec8ff (patch) | |
tree | d84b5423ab80dafbf2af148a82fb03cfc9cfcdeb | |
parent | e15790fa1fa9954f0209a5d589381f99a05521de (diff) |
kernel: ahci: Defer ahci_init()
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | sys/dev/ic/ahci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ic/ahci.c b/sys/dev/ic/ahci.c index d07acd7..905149e 100644 --- a/sys/dev/ic/ahci.c +++ b/sys/dev/ic/ahci.c @@ -1018,4 +1018,4 @@ static struct bdevsw ahci_bdevsw = { .bsize = ahci_dev_bsize }; -DRIVER_EXPORT(ahci_init); +DRIVER_DEFER(ahci_init); |