Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/pci Fix typo that somehow snuck in.



details:   https://anonhg.NetBSD.org/src/rev/5766c317823f
branches:  trunk
changeset: 345603:5766c317823f
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Wed Jun 01 12:45:46 2016 +0000

description:
Fix typo that somehow snuck in.

diffstat:

 sys/dev/pci/if_dge.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r be436611a0ba -r 5766c317823f sys/dev/pci/if_dge.c
--- a/sys/dev/pci/if_dge.c      Wed Jun 01 12:40:03 2016 +0000
+++ b/sys/dev/pci/if_dge.c      Wed Jun 01 12:45:46 2016 +0000
@@ -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 @@
 {
        struct pci_attach_args *pa = aux;
 
-       if (dga_lookup(pa) != NULL)
+       if (dge_lookup(pa) != NULL)
                return (1);
 
        return (0);



Home | Main Index | Thread Index | Old Index