summaryrefslogtreecommitdiffstats
path: root/src/device
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2015-03-26 15:17:45 +0100
committerPatrick Georgi <pgeorgi@google.com>2015-05-21 20:50:25 +0200
commitb890a1228d22b2d48792575986d4750e88751c8b (patch)
tree71fd1318aa06ef11937236e1ef2ac5a6f386f723 /src/device
parent537283ddc55549b5fa0f1ba05f2b447a0cd9478f (diff)
downloadcoreboot-b890a1228d22b2d48792575986d4750e88751c8b.tar.gz
coreboot-b890a1228d22b2d48792575986d4750e88751c8b.tar.bz2
coreboot-b890a1228d22b2d48792575986d4750e88751c8b.zip
Remove address from GPLv2 headers
As per discussion with lawyers[tm], it's not a good idea to shorten the license header too much - not for legal reasons but because there are tools that look for them, and giving them a standard pattern simplifies things. However, we got confirmation that we don't have to update every file ever added to coreboot whenever the FSF gets a new lease, but can drop the address instead. util/kconfig is excluded because that's imported code that we may want to synchronize every now and then. $ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *MA[, ]*02110-1301[, ]*USA:Foundation, Inc.:" {} + $ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA:Foundation, Inc.:" {} + $ find * -type f -exec sed -i "s:Foundation, Inc., 59 Temple Place[-, ]*Suite 330, Boston, MA *02111-1307[, ]*USA:Foundation, Inc.:" {} + $ find * -type f -exec sed -i "s:Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.:Foundation, Inc.:" {} + $ find * -type f -a \! -name \*.patch \ -a \! -name \*_shipped \ -a \! -name LICENSE_GPL \ -a \! -name LGPL.txt \ -a \! -name COPYING \ -a \! -name DISCLAIMER \ -exec sed -i "/Foundation, Inc./ N;s:Foundation, Inc.* USA\.* *:Foundation, Inc. :;s:Foundation, Inc. $:Foundation, Inc.:" {} + Change-Id: Icc968a5a5f3a5df8d32b940f9cdb35350654bef9 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: http://review.coreboot.org/9233 Tested-by: build bot (Jenkins) Reviewed-by: Vladimir Serbinenko <phcoder@gmail.com>
Diffstat (limited to 'src/device')
-rw-r--r--src/device/Kconfig2
-rw-r--r--src/device/azalia_device.c2
-rw-r--r--src/device/cardbus_device.c2
-rw-r--r--src/device/cpu_device.c2
-rw-r--r--src/device/device_romstage.c2
-rw-r--r--src/device/device_util.c2
-rw-r--r--src/device/dram/spd_cache.c2
-rw-r--r--src/device/hypertransport.c2
-rw-r--r--src/device/oprom/Makefile.inc2
-rw-r--r--src/device/oprom/realmode/Makefile.inc2
-rw-r--r--src/device/oprom/realmode/x86.c2
-rw-r--r--src/device/oprom/realmode/x86.h2
-rw-r--r--src/device/oprom/realmode/x86_asm.S2
-rw-r--r--src/device/oprom/realmode/x86_interrupts.c2
-rw-r--r--src/device/pci_class.c2
-rw-r--r--src/device/pci_early.c2
-rw-r--r--src/device/pci_ops.c2
-rw-r--r--src/device/pci_rom.c2
-rw-r--r--src/device/pciexp_device.c2
-rw-r--r--src/device/pcix_device.c2
-rw-r--r--src/device/pnp_device.c2
-rw-r--r--src/device/root_device.c2
-rw-r--r--src/device/smbus_ops.c2
-rw-r--r--src/device/software_i2c.c2
24 files changed, 24 insertions, 24 deletions
diff --git a/src/device/Kconfig b/src/device/Kconfig
index 8ddb58cef08f..4561b1f64552 100644
--- a/src/device/Kconfig
+++ b/src/device/Kconfig
@@ -15,7 +15,7 @@
##
## 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+## Foundation, Inc.
##
menu "Devices"
diff --git a/src/device/azalia_device.c b/src/device/azalia_device.c
index d93fb3abdd1a..71eb040eba22 100644
--- a/src/device/azalia_device.c
+++ b/src/device/azalia_device.c
@@ -14,7 +14,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
diff --git a/src/device/cardbus_device.c b/src/device/cardbus_device.c
index f25f96ce392d..bf0372a12771 100644
--- a/src/device/cardbus_device.c
+++ b/src/device/cardbus_device.c
@@ -16,7 +16,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
diff --git a/src/device/cpu_device.c b/src/device/cpu_device.c
index e76b5396511f..255cbc70f89a 100644
--- a/src/device/cpu_device.c
+++ b/src/device/cpu_device.c
@@ -15,7 +15,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <device/device.h>
diff --git a/src/device/device_romstage.c b/src/device/device_romstage.c
index df0df6a529f9..5610b394d5b5 100644
--- a/src/device/device_romstage.c
+++ b/src/device/device_romstage.c
@@ -19,7 +19,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <device/device.h>
diff --git a/src/device/device_util.c b/src/device/device_util.c
index d970429ff232..7567aac8c7e3 100644
--- a/src/device/device_util.c
+++ b/src/device/device_util.c
@@ -19,7 +19,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
diff --git a/src/device/dram/spd_cache.c b/src/device/dram/spd_cache.c
index 8abb791634d7..62e19a6594f7 100644
--- a/src/device/dram/spd_cache.c
+++ b/src/device/dram/spd_cache.c
@@ -15,7 +15,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <cbfs.h>
diff --git a/src/device/hypertransport.c b/src/device/hypertransport.c
index d27e66b5cf10..a15a021c5c01 100644
--- a/src/device/hypertransport.c
+++ b/src/device/hypertransport.c
@@ -20,7 +20,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <lib.h>
diff --git a/src/device/oprom/Makefile.inc b/src/device/oprom/Makefile.inc
index 4fc81b003dc3..b5586ec356bf 100644
--- a/src/device/oprom/Makefile.inc
+++ b/src/device/oprom/Makefile.inc
@@ -14,7 +14,7 @@
##
## 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+## Foundation, Inc.
##
subdirs-$(CONFIG_PCI_OPTION_ROM_RUN_YABEL) += x86emu
diff --git a/src/device/oprom/realmode/Makefile.inc b/src/device/oprom/realmode/Makefile.inc
index 68ee3b879223..eea6a1e3a9ff 100644
--- a/src/device/oprom/realmode/Makefile.inc
+++ b/src/device/oprom/realmode/Makefile.inc
@@ -14,7 +14,7 @@
##
## 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+## Foundation, Inc.
##
ramstage-$(CONFIG_PCI_OPTION_ROM_RUN_REALMODE) += x86.c
diff --git a/src/device/oprom/realmode/x86.c b/src/device/oprom/realmode/x86.c
index 919fd6d2729e..4d8a3e41c82b 100644
--- a/src/device/oprom/realmode/x86.c
+++ b/src/device/oprom/realmode/x86.c
@@ -15,7 +15,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+ * Foundation, Inc..
*/
#include <arch/io.h>
diff --git a/src/device/oprom/realmode/x86.h b/src/device/oprom/realmode/x86.h
index a0c7a9002c49..83fc19d07541 100644
--- a/src/device/oprom/realmode/x86.h
+++ b/src/device/oprom/realmode/x86.h
@@ -15,7 +15,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+ * Foundation, Inc..
*/
#ifndef __DEVICE_OPROM_REALMODE_X86_H__
diff --git a/src/device/oprom/realmode/x86_asm.S b/src/device/oprom/realmode/x86_asm.S
index 54cf37402515..54221a554667 100644
--- a/src/device/oprom/realmode/x86_asm.S
+++ b/src/device/oprom/realmode/x86_asm.S
@@ -14,7 +14,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+ * Foundation, Inc..
*/
#define REALMODE_BASE 0x600
diff --git a/src/device/oprom/realmode/x86_interrupts.c b/src/device/oprom/realmode/x86_interrupts.c
index 56a9b1b5dfb9..139245e17da4 100644
--- a/src/device/oprom/realmode/x86_interrupts.c
+++ b/src/device/oprom/realmode/x86_interrupts.c
@@ -16,7 +16,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+ * Foundation, Inc..
*/
#include <arch/io.h>
diff --git a/src/device/pci_class.c b/src/device/pci_class.c
index 607ec0c624a8..cadf75acfaec 100644
--- a/src/device/pci_class.c
+++ b/src/device/pci_class.c
@@ -15,7 +15,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <device/device.h>
diff --git a/src/device/pci_early.c b/src/device/pci_early.c
index e690211c438e..1b8058f5e780 100644
--- a/src/device/pci_early.c
+++ b/src/device/pci_early.c
@@ -14,7 +14,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
+ * Foundation, Inc.
*/
#define __SIMPLE_DEVICE__
diff --git a/src/device/pci_ops.c b/src/device/pci_ops.c
index 6ddb49363f62..7d49716babbe 100644
--- a/src/device/pci_ops.c
+++ b/src/device/pci_ops.c
@@ -16,7 +16,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
diff --git a/src/device/pci_rom.c b/src/device/pci_rom.c
index dbc05ac79063..04db05c09f06 100644
--- a/src/device/pci_rom.c
+++ b/src/device/pci_rom.c
@@ -18,7 +18,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
diff --git a/src/device/pciexp_device.c b/src/device/pciexp_device.c
index 5e1f1141629b..f6127b2d9659 100644
--- a/src/device/pciexp_device.c
+++ b/src/device/pciexp_device.c
@@ -15,7 +15,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
diff --git a/src/device/pcix_device.c b/src/device/pcix_device.c
index a20c3bff531f..cfa2f91c2f99 100644
--- a/src/device/pcix_device.c
+++ b/src/device/pcix_device.c
@@ -15,7 +15,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
diff --git a/src/device/pnp_device.c b/src/device/pnp_device.c
index e4aa4d3a965c..2ffe193af965 100644
--- a/src/device/pnp_device.c
+++ b/src/device/pnp_device.c
@@ -19,7 +19,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
diff --git a/src/device/root_device.c b/src/device/root_device.c
index d0a3664f6bf8..1ec6f7fb37c0 100644
--- a/src/device/root_device.c
+++ b/src/device/root_device.c
@@ -19,7 +19,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
diff --git a/src/device/smbus_ops.c b/src/device/smbus_ops.c
index 41b31ed9a94f..184a06ad6c19 100644
--- a/src/device/smbus_ops.c
+++ b/src/device/smbus_ops.c
@@ -16,7 +16,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
#include <console/console.h>
diff --git a/src/device/software_i2c.c b/src/device/software_i2c.c
index 518aa5faf7a9..f71e5aeb35ad 100644
--- a/src/device/software_i2c.c
+++ b/src/device/software_i2c.c
@@ -14,7 +14,7 @@
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
+ * Foundation, Inc.
*/
#include <assert.h>