libpayload: remove trailing whitespace and run dos2unix
[coreboot.git] / payloads / libpayload / curses / PDCurses-3.4 / dos / pdcdisp.c
index aae9bfb56d846211283580d4216b4d76af519275..d170cb175c978695adbbc0b69d41c8e5242cad25 100644 (file)
@@ -13,10 +13,10 @@ RCSID("$Id: pdcdisp.c,v 1.65 2008/07/13 16:08:17 wmcbrine Exp $")
 
 chtype acs_map[128] =
 {
-    A(0), A(1), A(2), A(3), A(4), A(5), A(6), A(7), A(8), A(9), A(10), 
-    A(11), A(12), A(13), A(14), A(15), A(16), A(17), A(18), A(19), 
-    A(20), A(21), A(22), A(23), A(24), A(25), A(26), A(27), A(28), 
-    A(29), A(30), A(31), ' ', '!', '"', '#', '$', '%', '&', '\'', '(', 
+    A(0), A(1), A(2), A(3), A(4), A(5), A(6), A(7), A(8), A(9), A(10),
+    A(11), A(12), A(13), A(14), A(15), A(16), A(17), A(18), A(19),
+    A(20), A(21), A(22), A(23), A(24), A(25), A(26), A(27), A(28),
+    A(29), A(30), A(31), ' ', '!', '"', '#', '$', '%', '&', '\'', '(',
     ')', '*',
 
     A(0x1a), A(0x1b), A(0x18), A(0x19),
@@ -25,17 +25,17 @@ chtype acs_map[128] =
 
     0xdb,
 
-    '1', '2', '3', '4', '5', '6', '7', '8', '9', ':', ';', '<', '=', 
-    '>', '?', '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 
-    'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 
+    '1', '2', '3', '4', '5', '6', '7', '8', '9', ':', ';', '<', '=',
+    '>', '?', '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J',
+    'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
     'X', 'Y', 'Z', '[', '\\', ']', '^', '_',
 
     A(0x04), 0xb1,
 
     'b', 'c', 'd', 'e',
 
-    0xf8, 0xf1, 0xb0, A(0x0f), 0xd9, 0xbf, 0xda, 0xc0, 0xc5, 0x2d, 0x2d, 
-    0xc4, 0x2d, 0x5f, 0xc3, 0xb4, 0xc1, 0xc2, 0xb3, 0xf3, 0xf2, 0xe3, 
+    0xf8, 0xf1, 0xb0, A(0x0f), 0xd9, 0xbf, 0xda, 0xc0, 0xc5, 0x2d, 0x2d,
+    0xc4, 0x2d, 0x5f, 0xc3, 0xb4, 0xc1, 0xc2, 0xb3, 0xf3, 0xf2, 0xe3,
     0xd8, 0x9c, 0xf9,
 
     A(127)
@@ -72,7 +72,7 @@ void PDC_gotoyx(int row, int col)
     PDCINT(0x10, regs);
 }
 
-/* update the given physical line to look like the corresponding line in 
+/* update the given physical line to look like the corresponding line in
    curscr */
 
 void PDC_transform_line(int lineno, int x, int len, const chtype *srcp)
@@ -93,7 +93,7 @@ void PDC_transform_line(int lineno, int x, int len, const chtype *srcp)
 
         struct {unsigned char text, attr;} temp_line[256];
 
-        /* replace the attribute part of the chtype with the actual 
+        /* replace the attribute part of the chtype with the actual
            color value for each chtype in the line */
 
         for (j = 0; j < len; j++)