Commit 9f08349345dae1d67effb8494c8386dd74b94128

Authored by ths
1 parent afdfa781

Spelling fixes, thanks to Stefan Weil.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2232 c046a42c-6fe2-441c-8c8c-71466251a162
cpu-exec.c
... ... @@ -398,7 +398,7 @@ int cpu_exec(CPUState *env1)
398 398 break;
399 399 } else if (env->user_mode_only) {
400 400 /* if user mode only, we simulate a fake exception
401   - which will be hanlded outside the cpu execution
  401 + which will be handled outside the cpu execution
402 402 loop */
403 403 #if defined(TARGET_I386)
404 404 do_interrupt_user(env->exception_index,
... ...
hw/ne2000.c
... ... @@ -312,7 +312,7 @@ static void ne2000_receive(void *opaque, const uint8_t *buf, int size)
312 312 }
313 313 s->curpag = next >> 8;
314 314  
315   - /* now we can signal we have receive something */
  315 + /* now we can signal we have received something */
316 316 s->isr |= ENISR_RX;
317 317 ne2000_update_irq(s);
318 318 }
... ...
hw/smc91c111.c
... ... @@ -615,7 +615,7 @@ static void smc91c111_receive(void *opaque, const uint8_t *buf, int size)
615 615  
616 616 if ((s->rcr & RCR_RXEN) == 0 || (s->rcr & RCR_SOFT_RST))
617 617 return;
618   - /* Short packets are padded with zeros. Recieveing a packet
  618 + /* Short packets are padded with zeros. Receiving a packet
619 619 < 64 bytes long is considered an error condition. */
620 620 if (size < 64)
621 621 packetsize = 64;
... ...
hw/unin_pci.c
... ... @@ -183,7 +183,7 @@ PCIBus *pci_pmac_init(void *pic)
183 183 d->config[0x0E] = 0x00; // header_type
184 184 d->config[0x34] = 0x00; // capabilities_pointer
185 185  
186   -#if 0 // XXX: not activated as PPC BIOS doesn't handle mutiple buses properly
  186 +#if 0 // XXX: not activated as PPC BIOS doesn't handle multiple buses properly
187 187 /* pci-to-pci bridge */
188 188 d = pci_register_device("Uni-north bridge", sizeof(PCIDevice), 0, 13 << 3,
189 189 NULL, NULL);
... ...
target-sh4/README.sh4
... ... @@ -113,7 +113,7 @@ GDB remote target support has been implemented and lightly tested.
113 113 Files
114 114 -----
115 115  
116   -File names are harcoded at this time. The bootloader must be stored in
  116 +File names are hardcoded at this time. The bootloader must be stored in
117 117 shix_bios.bin in the current directory. The initial Linux image must
118 118 be stored in shix_linux_nand.bin in the current directory in NAND
119 119 format. Test files can be obtained from
... ...