]> Git Repo - qemu.git/commitdiff
Fix typo in comment (colum -> column)
authorStefan Weil <[email protected]>
Thu, 28 Apr 2011 15:20:28 +0000 (17:20 +0200)
committerStefan Hajnoczi <[email protected]>
Sun, 8 May 2011 09:02:16 +0000 (10:02 +0100)
Signed-off-by: Stefan Weil <[email protected]>
Signed-off-by: Stefan Hajnoczi <[email protected]>
hw/ssd0303.c

index 108c0683c8907c806434609d9eff7eae1d435c36..b39e2596fb4574531397f5e1da88d65bf77d1e9f 100644 (file)
@@ -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.  */
This page took 0.02783 seconds and 4 git commands to generate.