Remove empty lines at end of file

Used command line to remove empty lines at end of file:
find . -type f -exec sed -i -e :a -e '/^\n*$/{$d;N;};/\n$/ba' {} \;

Change-Id: I816ac9666b6dbb7c7e47843672f0d5cc499766a3
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: http://review.coreboot.org/10446
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
Elyes HAOUAS
2015-06-06 19:48:25 +02:00
committed by Stefan Reinauer
parent 4ba3b79537
commit 52648623e0
382 changed files with 0 additions and 419 deletions

View File

@@ -50,5 +50,3 @@ $(objutil)/nvramtool/%.o: $(top)/util/nvramtool/%.c
$(objutil)/nvramtool/nvramtool: $(objutil)/nvramtool $(objutil)/nvramtool/accessors $(objutil)/nvramtool/cli $(addprefix $(objutil)/nvramtool/,$(nvramtoolobj))
printf " HOSTCC $(subst $(objutil)/,,$(@)) (link)\n"
$(HOSTCC) $(NVRAMTOOLFLAGS) -o $@ $(addprefix $(objutil)/nvramtool/,$(nvramtoolobj)) $(NVRAMTOOLLDFLAGS)

View File

@@ -166,4 +166,3 @@ cmos_access_t cmos_hal = {
.write = cmos_hal_write,
.set_iopl = cmos_set_iopl,
};

View File

@@ -34,4 +34,3 @@ cmos_access_t memory_hal = {
.write = mem_hal_write,
.set_iopl = mem_set_iopl,
};

View File

@@ -606,4 +606,3 @@ static const struct lb_record *next_cmos_rec(const struct lb_record *last,
return NULL;
}

View File

@@ -151,4 +151,3 @@ void open_cbfs(const char *filename)
}
cbfs_offset = cbfs_mapped-(0xffffffff-cbfs_stat.st_size+1);
}

View File

@@ -178,4 +178,3 @@ void *cbfs_find_file(const char *name, unsigned int type, unsigned int *len);
void open_cbfs(const char *filename);
#endif

View File

@@ -185,4 +185,3 @@ static void addrprint(FILE * outfile, uint64_t address, int width)
fprintf(outfile, ":");
}
}

View File

@@ -887,4 +887,3 @@ static void string_print_fn(const struct lb_record *rec)
p = (const struct lb_string *)rec;
printf("%s\n", p->string);
}

View File

@@ -48,4 +48,3 @@ void compile_reg_expr(int cflags, const char *expr, regex_t *reg)
exit(1);
}
}