diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2015-06-06 19:48:25 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-06-08 00:55:07 +0200 |
commit | 52648623e03e6769ae73ef8ee999d671fb657d62 (patch) | |
tree | 2e0c7675c40463cb7864b0b119e50eeadf892a78 /util/inteltool | |
parent | 4ba3b79537008b4d2448848901212cf2251188d1 (diff) | |
download | coreboot-52648623e03e6769ae73ef8ee999d671fb657d62.tar.xz |
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>
Diffstat (limited to 'util/inteltool')
-rw-r--r-- | util/inteltool/Makefile | 1 | ||||
-rw-r--r-- | util/inteltool/amb.c | 2 | ||||
-rw-r--r-- | util/inteltool/memory.c | 2 | ||||
-rw-r--r-- | util/inteltool/spi.c | 1 |
4 files changed, 0 insertions, 6 deletions
diff --git a/util/inteltool/Makefile b/util/inteltool/Makefile index df939d577b..d5fb1da975 100644 --- a/util/inteltool/Makefile +++ b/util/inteltool/Makefile @@ -87,4 +87,3 @@ install: $(PROGRAM) .PHONY: all clean distclean dep pciutils -include .dependencies - diff --git a/util/inteltool/amb.c b/util/inteltool/amb.c index e83575187c..416e1b79f8 100644 --- a/util/inteltool/amb.c +++ b/util/inteltool/amb.c @@ -465,5 +465,3 @@ int print_ambs(struct pci_dev *dev, struct pci_access *pacc) unmap_physical((void *)ambconfig, AMB_CONFIG_SPACE_SIZE); return 0; } - - diff --git a/util/inteltool/memory.c b/util/inteltool/memory.c index a4ff1af7ea..6c6a67db1a 100644 --- a/util/inteltool/memory.c +++ b/util/inteltool/memory.c @@ -266,5 +266,3 @@ int print_mchbar(struct pci_dev *nb, struct pci_access *pacc) unmap_physical((void *)mchbar, size); return 0; } - - diff --git a/util/inteltool/spi.c b/util/inteltool/spi.c index 8873fc0d9a..bd584b6d53 100644 --- a/util/inteltool/spi.c +++ b/util/inteltool/spi.c @@ -218,4 +218,3 @@ int print_spibar(struct pci_dev *sb) { int print_spi(struct pci_dev *sb) { return (print_bioscntl(sb) || print_spibar(sb)); } - |