Remove whitespace.
Fix issues reported by new lint test. Change-Id: I077a829cb4a855cbb3b71b6eb5c66b2068be6def Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/646 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
committed by
Stefan Reinauer
parent
d13e4167a9
commit
472efa6041
@@ -18,11 +18,11 @@
|
||||
|
||||
rm -rf out
|
||||
mkdir out
|
||||
|
||||
|
||||
# walk through all ACPI tables with their addresses
|
||||
# example:
|
||||
# example:
|
||||
# RSDT @ 0xcf6794ba
|
||||
# we can not just dump the tables by their names because some
|
||||
# we can not just dump the tables by their names because some
|
||||
# machines have double ACPI tables
|
||||
|
||||
acpidump | grep "@ 0x" | while read line
|
||||
|
@@ -23,7 +23,7 @@ CC = gcc
|
||||
INSTALL = /usr/bin/install
|
||||
PREFIX = /usr/local
|
||||
CFLAGS = -O2 -g -Wall -W
|
||||
LDFLAGS =
|
||||
LDFLAGS =
|
||||
|
||||
OBJS = ifdtool.o
|
||||
|
||||
@@ -47,7 +47,7 @@ install: $(PROGRAM)
|
||||
mkdir -p $(DESTDIR)$(PREFIX)/share/man/man8
|
||||
$(INSTALL) $(PROGRAM).8 $(DESTDIR)$(PREFIX)/share/man/man8
|
||||
|
||||
.PHONY: all clean distclean dep
|
||||
.PHONY: all clean distclean dep
|
||||
|
||||
-include .dependencies
|
||||
|
||||
|
@@ -22,7 +22,7 @@ DEFINES=`grep "#define" src/mainboard/*/*/romstage.c |sed 's,.*#define[\t ]\([^\
|
||||
SCANBUCKET=`mktemp`
|
||||
LC_ALL=C export LC_ALL
|
||||
find src -name .svn -type d -prune -o -name mainboard -type d -prune -o -name examples -type d -prune -o -type f -exec sed -nf `dirname $0`/remccoms3.sed {} + > $SCANBUCKET
|
||||
|
||||
|
||||
for define in $DEFINES; do
|
||||
if [ `egrep -c "([^_A-Za-z0-9]$define[^_A-Za-z0-9]|^$define[^_A-Za-z0-9]|[^_A-Za-z0-9]$define\$)" $SCANBUCKET` -gt 0 ]; then
|
||||
echo "$define is defined in mainboard(s) and used elsewhere"
|
||||
|
@@ -43,7 +43,7 @@ s,"[^"]*",,g
|
||||
s,\n\(.[^\"]*\).*,\1,
|
||||
x
|
||||
s,.[^\"]*,,
|
||||
|
||||
|
||||
/^"/b break
|
||||
/^\\/{
|
||||
H
|
||||
@@ -69,7 +69,7 @@ s,"[^"]*",,g
|
||||
s,\n\(.[^\']*\).*,\1,
|
||||
x
|
||||
s,.[^\']*,,
|
||||
|
||||
|
||||
/^'/b break
|
||||
/^\\/{
|
||||
H
|
||||
|
@@ -203,7 +203,7 @@ rm -f conftest*])
|
||||
if test $libc_cv_fno_stack_protector = yes; then
|
||||
I386_CFLAGS="$I386_CFLAGS -fno-stack-protector"
|
||||
IA64_CFLAGS="$IA64_CFLAGS -fno-stack-protector"
|
||||
|
||||
|
||||
fi
|
||||
AC_SUBST(libc_cv_fno_stack_protector)
|
||||
|
||||
|
Reference in New Issue
Block a user