aboutsummaryrefslogtreecommitdiff
path: root/sys/pci/if_sk.c
diff options
context:
space:
mode:
authorBill Paul <wpaul@FreeBSD.org>1999-07-23 05:50:35 +0000
committerBill Paul <wpaul@FreeBSD.org>1999-07-23 05:50:35 +0000
commit09590dc4c18991a5ba6bf056cc0d40e2920cd324 (patch)
treee6744a52400f1b5d52dfbdb40e2176eefe205f66 /sys/pci/if_sk.c
parent98edb3e17869504d0ada58932efa96b71f899181 (diff)
downloadsrc-09590dc4c18991a5ba6bf056cc0d40e2920cd324.tar.gz
src-09590dc4c18991a5ba6bf056cc0d40e2920cd324.zip
One last tweak before I turn in for the evening: the driver name in
the driver_t declaration should be "skc" not "sk". Technically, "skc" is the parent PCI device (the SysKonnect GEnesis controller) and "sk0" and "sk1" are the network interfaces that get attached to it.
Notes
Notes: svn path=/head/; revision=49017
Diffstat (limited to 'sys/pci/if_sk.c')
-rw-r--r--sys/pci/if_sk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/pci/if_sk.c b/sys/pci/if_sk.c
index 10f7dc918551..81db591c3689 100644
--- a/sys/pci/if_sk.c
+++ b/sys/pci/if_sk.c
@@ -29,7 +29,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: if_sk.c,v 1.51 1999/07/14 21:48:19 wpaul Exp $
+ * $Id: if_sk.c,v 1.7 1999/07/23 02:06:55 wpaul Exp $
*/
/*
@@ -102,7 +102,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id: if_sk.c,v 1.51 1999/07/14 21:48:19 wpaul Exp $";
+ "$Id: if_sk.c,v 1.7 1999/07/23 02:06:55 wpaul Exp $";
#endif
static struct sk_type sk_devs[] = {
@@ -175,7 +175,7 @@ static device_method_t sk_methods[] = {
};
static driver_t sk_driver = {
- "sk",
+ "skc",
sk_methods,
sizeof(struct sk_softc)
};