summaryrefslogtreecommitdiffstats
path: root/util/inteltool
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@chromium.org>2015-10-31 11:55:10 +0100
committerPatrick Georgi <pgeorgi@google.com>2015-10-31 21:37:39 +0100
commita73b93157f2a5ed42bebf9a5948a4e2cedcb4250 (patch)
tree9e058ce7ae03b1b14acebc050b4b2d837c7cabb9 /util/inteltool
parent74b13a56166649967a3e9ab0e4ea5c68b518c6b2 (diff)
downloadcoreboot-a73b93157f2a5ed42bebf9a5948a4e2cedcb4250.tar.gz
coreboot-a73b93157f2a5ed42bebf9a5948a4e2cedcb4250.tar.bz2
coreboot-a73b93157f2a5ed42bebf9a5948a4e2cedcb4250.zip
tree: drop last paragraph of GPL copyright header
It encourages users from writing to the FSF without giving an address. Linux also prefers to drop that and their checkpatch.pl (that we imported) looks out for that. This is the result of util/scripts/no-fsf-addresses.sh with no further editing. Change-Id: Ie96faea295fe001911d77dbc51e9a6789558fbd6 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: http://review.coreboot.org/11888 Tested-by: build bot (Jenkins) Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'util/inteltool')
-rw-r--r--util/inteltool/Makefile4
-rw-r--r--util/inteltool/amb.c4
-rw-r--r--util/inteltool/cpu.c4
-rw-r--r--util/inteltool/gfx.c4
-rw-r--r--util/inteltool/gpio.c4
-rw-r--r--util/inteltool/inteltool.c4
-rw-r--r--util/inteltool/inteltool.h4
-rw-r--r--util/inteltool/ivy_memory.c4
-rw-r--r--util/inteltool/memory.c4
-rw-r--r--util/inteltool/pcie.c4
-rw-r--r--util/inteltool/powermgt.c4
-rw-r--r--util/inteltool/rootcmplx.c4
12 files changed, 0 insertions, 48 deletions
diff --git a/util/inteltool/Makefile b/util/inteltool/Makefile
index 3fbcf9c2039c..6e202cf81f87 100644
--- a/util/inteltool/Makefile
+++ b/util/inteltool/Makefile
@@ -14,10 +14,6 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc.
-#
PROGRAM = inteltool
diff --git a/util/inteltool/amb.c b/util/inteltool/amb.c
index 416e1b79f801..ca6b9cd47102 100644
--- a/util/inteltool/amb.c
+++ b/util/inteltool/amb.c
@@ -11,10 +11,6 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc.
*/
#include <stddef.h>
diff --git a/util/inteltool/cpu.c b/util/inteltool/cpu.c
index b13e04bfdb42..e201dea9e6c2 100644
--- a/util/inteltool/cpu.c
+++ b/util/inteltool/cpu.c
@@ -11,10 +11,6 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc.
*/
#include <fcntl.h>
diff --git a/util/inteltool/gfx.c b/util/inteltool/gfx.c
index f9b1fba17ae0..ffcf75c85985 100644
--- a/util/inteltool/gfx.c
+++ b/util/inteltool/gfx.c
@@ -12,10 +12,6 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc.
*/
#include <stdio.h>
diff --git a/util/inteltool/gpio.c b/util/inteltool/gpio.c
index 07d838b1699b..b9d5ae1d2d2d 100644
--- a/util/inteltool/gpio.c
+++ b/util/inteltool/gpio.c
@@ -11,10 +11,6 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc.
*/
#include <stdio.h>
diff --git a/util/inteltool/inteltool.c b/util/inteltool/inteltool.c
index f91b3ade68d7..9fcf58d043d2 100644
--- a/util/inteltool/inteltool.c
+++ b/util/inteltool/inteltool.c
@@ -13,10 +13,6 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc.
*/
#include <stdio.h>
diff --git a/util/inteltool/inteltool.h b/util/inteltool/inteltool.h
index dffe204d37cc..6845b4ef6d7f 100644
--- a/util/inteltool/inteltool.h
+++ b/util/inteltool/inteltool.h
@@ -12,10 +12,6 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc.
*/
#include <stdint.h>
diff --git a/util/inteltool/ivy_memory.c b/util/inteltool/ivy_memory.c
index 98eef41b03e1..0dfa7999d68d 100644
--- a/util/inteltool/ivy_memory.c
+++ b/util/inteltool/ivy_memory.c
@@ -9,10 +9,6 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc.
*/
#include <stdio.h>
diff --git a/util/inteltool/memory.c b/util/inteltool/memory.c
index aacaf9621add..5f047297ede4 100644
--- a/util/inteltool/memory.c
+++ b/util/inteltool/memory.c
@@ -11,10 +11,6 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc.
*/
diff --git a/util/inteltool/pcie.c b/util/inteltool/pcie.c
index ebe087737895..de70e6d29431 100644
--- a/util/inteltool/pcie.c
+++ b/util/inteltool/pcie.c
@@ -12,10 +12,6 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc.
*/
#include <stdio.h>
diff --git a/util/inteltool/powermgt.c b/util/inteltool/powermgt.c
index d0fd0e040570..fd0d00f0d896 100644
--- a/util/inteltool/powermgt.c
+++ b/util/inteltool/powermgt.c
@@ -12,10 +12,6 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc.
*/
#include <stdio.h>
diff --git a/util/inteltool/rootcmplx.c b/util/inteltool/rootcmplx.c
index 9fd05bef353e..323811d19280 100644
--- a/util/inteltool/rootcmplx.c
+++ b/util/inteltool/rootcmplx.c
@@ -12,10 +12,6 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc.
*/
#include <stdio.h>