Spelling fixes, by Stefan Weil.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3066 c046a42c-6fe2-441c-8c8c-71466251a162
diff --git a/hw/i2c.h b/hw/i2c.h
index 17e52e7..9330ae8 100644
--- a/hw/i2c.h
+++ b/hw/i2c.h
@@ -10,7 +10,7 @@
I2C_START_RECV,
I2C_START_SEND,
I2C_FINISH,
- I2C_NACK /* Masker NACKed a recieve byte. */
+ I2C_NACK /* Masker NACKed a receive byte. */
};
typedef struct i2c_slave i2c_slave;
diff --git a/hw/ide.c b/hw/ide.c
index c4fabe6..9acb02a 100644
--- a/hw/ide.c
+++ b/hw/ide.c
@@ -1567,7 +1567,7 @@
buf[1] = 0x80; /* removable */
buf[2] = 0x00; /* ISO */
buf[3] = 0x21; /* ATAPI-2 (XXX: put ATAPI-4 ?) */
- buf[4] = 31; /* additionnal length */
+ buf[4] = 31; /* additional length */
buf[5] = 0; /* reserved */
buf[6] = 0; /* reserved */
buf[7] = 0; /* reserved */
diff --git a/hw/pl011.c b/hw/pl011.c
index 64b7530..149a85e 100644
--- a/hw/pl011.c
+++ b/hw/pl011.c
@@ -176,7 +176,7 @@
}
}
-static int pl011_can_recieve(void *opaque)
+static int pl011_can_receive(void *opaque)
{
pl011_state *s = (pl011_state *)opaque;
@@ -186,7 +186,7 @@
return s->read_count < 1;
}
-static void pl011_recieve(void *opaque, const uint8_t *buf, int size)
+static void pl011_receive(void *opaque, const uint8_t *buf, int size)
{
pl011_state *s = (pl011_state *)opaque;
int slot;
@@ -241,7 +241,7 @@
s->cr = 0x300;
s->flags = 0x90;
if (chr){
- qemu_chr_add_handlers(chr, pl011_can_recieve, pl011_recieve,
+ qemu_chr_add_handlers(chr, pl011_can_receive, pl011_receive,
pl011_event, s);
}
/* ??? Save/restore. */
diff --git a/hw/pl181.c b/hw/pl181.c
index 9124659..62ccad9 100644
--- a/hw/pl181.c
+++ b/hw/pl181.c
@@ -160,7 +160,7 @@
s->response[2] = RWORD(8);
s->response[3] = RWORD(12) & ~1;
}
- DPRINTF("Response recieved\n");
+ DPRINTF("Response received\n");
s->status |= PL181_STATUS_CMDRESPEND;
#undef RWORD
} else {
@@ -174,7 +174,7 @@
s->status |= PL181_STATUS_CMDTIMEOUT;
}
-/* Transfer data between teh card and the FIFO. This is complicated by
+/* Transfer data between the card and the FIFO. This is complicated by
the FIFO holding 32-bit words and the card taking data in single byte
chunks. FIFO bytes are transferred in little-endian order. */
diff --git a/hw/rtl8139.c b/hw/rtl8139.c
index d1e60e8..705bddb 100644
--- a/hw/rtl8139.c
+++ b/hw/rtl8139.c
@@ -790,7 +790,7 @@
RTL8139State *s = opaque;
int avail;
- /* Recieve (drop) packets if card is disabled. */
+ /* Receive (drop) packets if card is disabled. */
if (!s->clock_enabled)
return 1;
if (!rtl8139_receiver_enabled(s))
diff --git a/hw/usb.c b/hw/usb.c
index efbc6db..17cb8df 100644
--- a/hw/usb.c
+++ b/hw/usb.c
@@ -140,7 +140,7 @@
s->setup_state = SETUP_STATE_IDLE;
/* transfer OK */
} else {
- /* ignore additionnal output */
+ /* ignore additional output */
}
break;
case SETUP_STATE_DATA: