diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-12-07 18:28:42 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-12-07 18:28:42 +0000 |
commit | 9f08349345dae1d67effb8494c8386dd74b94128 (patch) | |
tree | 8790773ae5147c9d9a39d42cd5bf958c76b0d53d /hw | |
parent | afdfa781e66b689c6c8ee37b7da66bda59df73d2 (diff) |
Spelling fixes, thanks to Stefan Weil.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2232 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw')
-rw-r--r-- | hw/ne2000.c | 2 | ||||
-rw-r--r-- | hw/smc91c111.c | 2 | ||||
-rw-r--r-- | hw/unin_pci.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/hw/ne2000.c b/hw/ne2000.c index 14d48ee95b..94700c17b9 100644 --- a/hw/ne2000.c +++ b/hw/ne2000.c @@ -312,7 +312,7 @@ static void ne2000_receive(void *opaque, const uint8_t *buf, int size) } s->curpag = next >> 8; - /* now we can signal we have receive something */ + /* now we can signal we have received something */ s->isr |= ENISR_RX; ne2000_update_irq(s); } diff --git a/hw/smc91c111.c b/hw/smc91c111.c index 214e92efc0..1ef5b56892 100644 --- a/hw/smc91c111.c +++ b/hw/smc91c111.c @@ -615,7 +615,7 @@ static void smc91c111_receive(void *opaque, const uint8_t *buf, int size) if ((s->rcr & RCR_RXEN) == 0 || (s->rcr & RCR_SOFT_RST)) return; - /* Short packets are padded with zeros. Recieveing a packet + /* Short packets are padded with zeros. Receiving a packet < 64 bytes long is considered an error condition. */ if (size < 64) packetsize = 64; diff --git a/hw/unin_pci.c b/hw/unin_pci.c index e47f4b3ac0..6448a6f250 100644 --- a/hw/unin_pci.c +++ b/hw/unin_pci.c @@ -183,7 +183,7 @@ PCIBus *pci_pmac_init(void *pic) d->config[0x0E] = 0x00; // header_type d->config[0x34] = 0x00; // capabilities_pointer -#if 0 // XXX: not activated as PPC BIOS doesn't handle mutiple buses properly +#if 0 // XXX: not activated as PPC BIOS doesn't handle multiple buses properly /* pci-to-pci bridge */ d = pci_register_device("Uni-north bridge", sizeof(PCIDevice), 0, 13 << 3, NULL, NULL); |