Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

lib/fonts: Remove trailing whitespaces

Fix coding style. No functional changes.

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Helge Deller <deller@gmx.de>

authored by

Thomas Zimmermann and committed by
Helge Deller
e7564d80 e370d84b

+5 -5
+1 -1
lib/fonts/font_acorn_8x8.c
··· 68 68 /* 3A */ 0x00, 0x00, 0x18, 0x18, 0x00, 0x18, 0x18, 0x00, /* : */ 69 69 /* 3B */ 0x00, 0x00, 0x18, 0x18, 0x00, 0x18, 0x18, 0x30, /* ; */ 70 70 /* 3C */ 0x0C, 0x18, 0x30, 0x60, 0x30, 0x18, 0x0C, 0x00, /* < */ 71 - /* 3D */ 0x00, 0x00, 0x7E, 0x00, 0x7E, 0x00, 0x00, 0x00, /* = */ 71 + /* 3D */ 0x00, 0x00, 0x7E, 0x00, 0x7E, 0x00, 0x00, 0x00, /* = */ 72 72 /* 3E */ 0x30, 0x18, 0x0C, 0x06, 0x0C, 0x18, 0x30, 0x00, /* > */ 73 73 /* 3F */ 0x3C, 0x66, 0x0C, 0x18, 0x18, 0x00, 0x18, 0x00, /* ? */ 74 74 /* 40 */ 0x3C, 0x66, 0x6E, 0x6A, 0x6E, 0x60, 0x3C, 0x00, /* @ */
+4 -4
lib/fonts/font_mini_4x6.c
··· 18 18 s{((0x)?[0-9a-fA-F]+)(.*\[([\*\ ]{4})\])}{ 19 19 20 20 ($num,$pat,$bits) = ($1,$3,$4); 21 - 21 + 22 22 $bits =~ s/([^\s0])|(.)/ defined($1) + 0 /ge; 23 - 23 + 24 24 $num = ord(pack("B8", $bits)); 25 25 $num |= $num >> 4; 26 26 $num = sprintf("0x%.2x", $num); 27 - 27 + 28 28 #print "$num,$pat,$bits\n"; 29 - 29 + 30 30 $num . $pat; 31 31 }ge; 32 32