diff options
Diffstat (limited to 'sys/dev/phy')
-rw-r--r-- | sys/dev/phy/e1000.c | 2 | ||||
-rw-r--r-- | sys/dev/phy/rtl.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/phy/e1000.c b/sys/dev/phy/e1000.c index 95efe6d..41a2a27 100644 --- a/sys/dev/phy/e1000.c +++ b/sys/dev/phy/e1000.c @@ -355,4 +355,4 @@ e1000_init(void) return 0; } -DRIVER_EXPORT(e1000_init); +DRIVER_EXPORT(e1000_init, "e1000"); diff --git a/sys/dev/phy/rtl.c b/sys/dev/phy/rtl.c index 691f767..d096d1a 100644 --- a/sys/dev/phy/rtl.c +++ b/sys/dev/phy/rtl.c @@ -440,4 +440,4 @@ rt81xx_init(void) return rt_init_mac(); } -DRIVER_DEFER(rt81xx_init); +DRIVER_DEFER(rt81xx_init, "rtl81xx"); |