Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / payloads / libpayload / drivers / video / corebootfb.c
index 190d3f0d4b1ea87288ad6954a7b5c39e953ff81f..0fb1740785f5a4907fabb792a439ac559923f65b 100644 (file)
@@ -150,7 +150,7 @@ static void corebootfb_putchar(u8 row, u8 col, unsigned int ch)
 
        for(y = 0; y < FONT_HEIGHT; y++) {
                for(x = FONT_WIDTH - 1; x >= 0; x--) {
-       
+
                        switch (FI->bits_per_pixel) {
                        case 8: /* Indexed */
                                dst[(FONT_WIDTH - x) * (FI->bits_per_pixel >> 3)] = (*glyph & (1 << x)) ?  fg : bg;