diff --git a/sys/pci/if_pcn.c b/sys/pci/if_pcn.c index ddfa67f1a15..ead2845a086 100644 --- a/sys/pci/if_pcn.c +++ b/sys/pci/if_pcn.c @@ -35,7 +35,7 @@ __FBSDID("$FreeBSD$"); /* - * AMD Am79c972 fast ethernet PCI NIC driver. Datatheets are available + * AMD Am79c972 fast ethernet PCI NIC driver. Datasheets are available * from http://www.amd.com. * * The AMD PCnet/PCI controllers are more advanced and functional @@ -436,8 +436,8 @@ pcn_probe(dev) * Note III: the test for 0x10001000 is a hack to * pacify VMware, who's pseudo-PCnet interface is * broken. Reading the subsystem register from PCI - * config space yeilds 0x00000000 while reading the - * same value from I/O space yeilds 0x10001000. It's + * config space yields 0x00000000 while reading the + * same value from I/O space yields 0x10001000. It's * not supposed to be that way. */ if (chip_id == pci_read_config(dev, @@ -902,7 +902,7 @@ pcn_intr(arg) sc = arg; ifp = &sc->arpcom.ac_if; - /* Supress unwanted interrupts */ + /* Suppress unwanted interrupts */ if (!(ifp->if_flags & IFF_UP)) { pcn_stop(sc); return;