From bcbd06fb8243c8610a1616eea292f816b86de204 Mon Sep 17 00:00:00 2001 From: obrien Date: Mon, 20 Sep 1999 06:50:52 +0000 Subject: Change the name we register with DRIVER_MODULE() to include the leading "if_". Reviewed by: msmith, wpaul --- sys/pci/if_sk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/pci/if_sk.c') diff --git a/sys/pci/if_sk.c b/sys/pci/if_sk.c index d80e4ab..04c1bf7 100644 --- a/sys/pci/if_sk.c +++ b/sys/pci/if_sk.c @@ -181,7 +181,7 @@ static driver_t sk_driver = { static devclass_t sk_devclass; -DRIVER_MODULE(skc, pci, sk_driver, sk_devclass, 0, 0); +DRIVER_MODULE(if_skc, pci, sk_driver, sk_devclass, 0, 0); #define SK_SETBIT(sc, reg, x) \ CSR_WRITE_4(sc, reg, CSR_READ_4(sc, reg) | x) -- cgit v1.1