Module Name: src
Committed By: pgoyette
Date: Wed Jun 1 12:45:46 UTC 2016
Modified Files:
src/sys/dev/pci: if_dge.c
Log Message:
Fix typo that somehow snuck in.
To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/sys/dev/pci/if_dge.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/pci/if_dge.c
diff -u src/sys/dev/pci/if_dge.c:1.42 src/sys/dev/pci/if_dge.c:1.43
--- src/sys/dev/pci/if_dge.c:1.42 Wed Jun 1 11:28:45 2016
+++ src/sys/dev/pci/if_dge.c Wed Jun 1 12:45:46 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: if_dge.c,v 1.42 2016/06/01 11:28:45 pgoyette Exp $ */
+/* $NetBSD: if_dge.c,v 1.43 2016/06/01 12:45:46 pgoyette Exp $ */
/*
* Copyright (c) 2004, SUNET, Swedish University Computer Network.
@@ -80,7 +80,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_dge.c,v 1.42 2016/06/01 11:28:45 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_dge.c,v 1.43 2016/06/01 12:45:46 pgoyette Exp $");
@@ -686,7 +686,7 @@ dge_match(device_t parent, cfdata_t cf,
{
struct pci_attach_args *pa = aux;
- if (dga_lookup(pa) != NULL)
+ if (dge_lookup(pa) != NULL)
return (1);
return (0);