aboutsummaryrefslogtreecommitdiffstats
path: root/hw/ssd0303.c
diff options
context:
space:
mode:
authorStefan Weil <weil@mail.berlios.de>2011-04-28 17:20:28 +0200
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2011-05-08 10:02:16 +0100
commit4e9a0b5bf82e6655e228567e67cffe482e190f05 (patch)
treecb81613d517df006cc96534bae0275eb5124b0e5 /hw/ssd0303.c
parent64c7b9d8e07936383db181876b59c597d6a1ff69 (diff)
Fix typo in comment (colum -> column)
Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'hw/ssd0303.c')
-rw-r--r--hw/ssd0303.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ssd0303.c b/hw/ssd0303.c
index 108c0683c..b39e2596f 100644
--- a/hw/ssd0303.c
+++ b/hw/ssd0303.c
@@ -93,7 +93,7 @@ static int ssd0303_send(i2c_slave *i2c, uint8_t data)
DPRINTF("cmd 0x%02x\n", data);
s->mode = SSD0303_IDLE;
switch (data) {
- case 0x00 ... 0x0f: /* Set lower colum address. */
+ case 0x00 ... 0x0f: /* Set lower column address. */
s->col = (s->col & 0xf0) | (data & 0xf);
break;
case 0x10 ... 0x20: /* Set higher column address. */