diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-07 19:07:57 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-07 19:07:57 -0400 |
commit | f3a0ea6acc7eba4cdda5be83bc8cfab69d6349b9 (patch) | |
tree | 08c48c462c4fd528ce71b9ca9bfbdfcbdfb066cf /sys/dev/phy | |
parent | 53123ddca5d1045606d62dd552a6c11487601872 (diff) |
kernel: rtl8139: Defer RTL8139 initialization
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/dev/phy')
-rw-r--r-- | sys/dev/phy/rt8139.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/phy/rt8139.c b/sys/dev/phy/rt8139.c index bf71463..12215d7 100644 --- a/sys/dev/phy/rt8139.c +++ b/sys/dev/phy/rt8139.c @@ -357,4 +357,4 @@ rt813l_init(void) return rt_init_mac(); } -DRIVER_EXPORT(rt813l_init); +DRIVER_DEFER(rt813l_init); |