9
0
Fork 0

lib: fix whitespace, drop blank lines at EOF

Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Antony Pavlov 2013-12-26 08:24:09 +04:00 committed by Sascha Hauer
parent 3173c27e4a
commit c2ffad8855
7 changed files with 1 additions and 7 deletions

View File

@ -35,4 +35,3 @@ int clock_notifier_call_chain(void);
}; };
#endif /* __NOTIFIER_H */ #endif /* __NOTIFIER_H */

View File

@ -9,7 +9,7 @@ obj-y += misc.o
obj-$(CONFIG_PARAMETER) += parameter.o obj-$(CONFIG_PARAMETER) += parameter.o
obj-y += xfuncs.o obj-y += xfuncs.o
obj-y += getopt.o obj-y += getopt.o
obj-y += readkey.o obj-y += readkey.o
obj-y += kfifo.o obj-y += kfifo.o
obj-y += libbb.o obj-y += libbb.o
obj-y += libgen.o obj-y += libgen.o

View File

@ -84,4 +84,3 @@ out:
return ret; return ret;
} }

View File

@ -153,4 +153,3 @@ unsigned int kfifo_getc(struct kfifo *fifo, unsigned char *c)
return 0; return 0;
} }

View File

@ -56,4 +56,3 @@ int clock_notifier_call_chain(void)
{ {
return notifier_call_chain(&clock_notifier_list, 0, NULL); return notifier_call_chain(&clock_notifier_list, 0, NULL);
} }

View File

@ -80,4 +80,3 @@ int process_escape_sequence(const char *source, char *dest, int destlen)
dest[i] = 0; dest[i] = 0;
return 0; return 0;
} }

View File

@ -62,4 +62,3 @@ void init_progression_bar(int max)
else else
printf("\t"); printf("\t");
} }