From 2228f81f1965717d2584ad9cd3b9f87be3ab0367 Mon Sep 17 00:00:00 2001 From: wiz Date: Wed, 17 Apr 2002 09:16:27 +0000 Subject: [PATCH] Fix two typos in comments. kern/16386 by Sean Davis. --- sys/dev/pci/if_tl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/dev/pci/if_tl.c b/sys/dev/pci/if_tl.c index d315f51a86ff..f2602dd8b459 100644 --- a/sys/dev/pci/if_tl.c +++ b/sys/dev/pci/if_tl.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_tl.c,v 1.51 2002/03/07 21:42:20 christos Exp $ */ +/* $NetBSD: if_tl.c,v 1.52 2002/04/17 09:16:27 wiz Exp $ */ /* * Copyright (c) 1997 Manuel Bouyer. All rights reserved. @@ -36,7 +36,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: if_tl.c,v 1.51 2002/03/07 21:42:20 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_tl.c,v 1.52 2002/04/17 09:16:27 wiz Exp $"); #undef TLDEBUG #define TL_PRIV_STATS @@ -299,7 +299,7 @@ tl_pci_attach(parent, self, aux) sc->tl_product = tp; /* - * Map the card space. Fisrt we have to find the I/O and MEM + * Map the card space. First we have to find the I/O and MEM * registers. I/O is supposed to be at 0x10, MEM at 0x14, * but some boards (Compaq Netflex 3/P PCI) seem to have it reversed. * The ThunderLAN manual is not consistent about this either (there @@ -415,7 +415,7 @@ tl_pci_attach(parent, self, aux) } /* * Add shutdown hook so that DMA is disabled prior to reboot. Not - * doing do could allow DMA to corrupt kernel memory during the + * doing * reboot before the driver initializes. */ (void) shutdownhook_establish(tl_shutdown, ifp);