aboutsummaryrefslogtreecommitdiffstats
path: root/fbtools.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2016-03-24 09:31:41 +0100
committerGerd Hoffmann <kraxel@redhat.com>2016-03-24 09:31:41 +0100
commite5ae0734000878206531096b921cf513fb70b7ba (patch)
tree26e4b3739103e6630089f2b970cfd724e411786a /fbtools.c
parent3adf7678254af8b8bc475654596105e3af763d68 (diff)
downloadfbida-e5ae0734000878206531096b921cf513fb70b7ba.tar.gz
whitespace
Diffstat (limited to 'fbtools.c')
-rw-r--r--fbtools.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fbtools.c b/fbtools.c
index c0920cb..9cd7665 100644
--- a/fbtools.c
+++ b/fbtools.c
@@ -118,7 +118,7 @@ fb_memset (void *addr, int c, size_t len)
{
#if 1 /* defined(__powerpc__) */
unsigned int i, *p;
-
+
i = (c & 0xff) << 8;
i |= i << 16;
len >>= 2;
@@ -135,13 +135,13 @@ fb_setmode(char *name)
FILE *fp;
char line[80],label[32],value[16];
int geometry=0, timings=0;
-
+
/* load current values */
if (-1 == ioctl(fb,FBIOGET_VSCREENINFO,&fb_var)) {
perror("ioctl FBIOGET_VSCREENINFO");
exit(1);
}
-
+
if (NULL == name)
return -1;
if (NULL == (fp = fopen("/etc/fb.modes","r")))