aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchrysn2012-03-03 00:24:58 +0100
committerchrysn2012-03-03 00:26:55 +0100
commit78c93dc779b42f94f531f81757ad4a911bd3e953 (patch)
treea9dfab76e64b17e62c51077436a94deb127969b6
parent4668adcf1fa7654434ad3becda8ab4245488d981 (diff)
add missed license headers to efm32 files
some files had nonstandard shared copyright lines, fixed them too
-rw-r--r--examples/efm32/tinygecko/efm32-tg-stk3300/miniblink/Makefile2
-rw-r--r--examples/efm32/tinygecko/efm32-tg-stk3300/miniblink/miniblink.c2
-rw-r--r--include/libopencm3/efm32/tinygecko/devicerevision.h19
-rw-r--r--include/libopencm3/efm32/tinygecko/irq.h19
-rw-r--r--include/libopencm3/efm32/vector.h19
-rw-r--r--lib/efm32/tinygecko/devicerevision.c19
-rw-r--r--lib/efm32/tinygecko/gpio.c19
-rw-r--r--lib/efm32/tinygecko/tinygecko.ld2
-rw-r--r--lib/efm32/tinygecko/vector.c2
9 files changed, 99 insertions, 4 deletions
diff --git a/examples/efm32/tinygecko/efm32-tg-stk3300/miniblink/Makefile b/examples/efm32/tinygecko/efm32-tg-stk3300/miniblink/Makefile
index cf46fb8..760b99b 100644
--- a/examples/efm32/tinygecko/efm32-tg-stk3300/miniblink/Makefile
+++ b/examples/efm32/tinygecko/efm32-tg-stk3300/miniblink/Makefile
@@ -2,7 +2,7 @@
## This file is part of the libopencm3 project.
##
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
-## 2012 chrysn <chrysn@fsfe.org>
+## Copyright (C) 2012 chrysn <chrysn@fsfe.org>
##
## This library is free software: you can redistribute it and/or modify
## it under the terms of the GNU Lesser General Public License as published by
diff --git a/examples/efm32/tinygecko/efm32-tg-stk3300/miniblink/miniblink.c b/examples/efm32/tinygecko/efm32-tg-stk3300/miniblink/miniblink.c
index 72c3b2b..0269847 100644
--- a/examples/efm32/tinygecko/efm32-tg-stk3300/miniblink/miniblink.c
+++ b/examples/efm32/tinygecko/efm32-tg-stk3300/miniblink/miniblink.c
@@ -2,7 +2,7 @@
* This file is part of the libopencm3 project.
*
* Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
- * 2012 chrysn <chrysn@fsfe.org>
+ * Copyright (C) 2012 chrysn <chrysn@fsfe.org>
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
diff --git a/include/libopencm3/efm32/tinygecko/devicerevision.h b/include/libopencm3/efm32/tinygecko/devicerevision.h
index c7c64aa..45da408 100644
--- a/include/libopencm3/efm32/tinygecko/devicerevision.h
+++ b/include/libopencm3/efm32/tinygecko/devicerevision.h
@@ -1,3 +1,22 @@
+/*
+ * This file is part of the libopencm3 project.
+ *
+ * Copyright (C) 2012 chrysn <chrysn@fsfe.org>
+ *
+ * This library is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
+ */
+
/* FIXME: proper documentation, see where this fits, if we need this at all
* etc. this was just a first attempt at implementing something easy with
* MMIO32. */
diff --git a/include/libopencm3/efm32/tinygecko/irq.h b/include/libopencm3/efm32/tinygecko/irq.h
index ee0c631..1b0a484 100644
--- a/include/libopencm3/efm32/tinygecko/irq.h
+++ b/include/libopencm3/efm32/tinygecko/irq.h
@@ -1,3 +1,22 @@
+/*
+ * This file is part of the libopencm3 project.
+ *
+ * Copyright (C) 2012 chrysn <chrysn@fsfe.org>
+ *
+ * This library is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
+ */
+
/** @file
*
* Definitions of interrupt names on EFM32 Tiny Gecko systems
diff --git a/include/libopencm3/efm32/vector.h b/include/libopencm3/efm32/vector.h
index ae6b9ba..2ae55af 100644
--- a/include/libopencm3/efm32/vector.h
+++ b/include/libopencm3/efm32/vector.h
@@ -1,3 +1,22 @@
+/*
+ * This file is part of the libopencm3 project.
+ *
+ * Copyright (C) 2012 chrysn <chrysn@fsfe.org>
+ *
+ * This library is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
+ */
+
/** @file
*
* Definitions for handling vector tables.
diff --git a/lib/efm32/tinygecko/devicerevision.c b/lib/efm32/tinygecko/devicerevision.c
index 216ab1b..0af3e90 100644
--- a/lib/efm32/tinygecko/devicerevision.c
+++ b/lib/efm32/tinygecko/devicerevision.c
@@ -1,3 +1,22 @@
+/*
+ * This file is part of the libopencm3 project.
+ *
+ * Copyright (C) 2012 chrysn <chrysn@fsfe.org>
+ *
+ * This library is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
+ */
+
#include <libopencm3/efm32/tinygecko/devicerevision.h>
u8 devicerevision_revision_get(void)
diff --git a/lib/efm32/tinygecko/gpio.c b/lib/efm32/tinygecko/gpio.c
index 6e49f17..839d1b8 100644
--- a/lib/efm32/tinygecko/gpio.c
+++ b/lib/efm32/tinygecko/gpio.c
@@ -1,3 +1,22 @@
+/*
+ * This file is part of the libopencm3 project.
+ *
+ * Copyright (C) 2012 chrysn <chrysn@fsfe.org>
+ *
+ * This library is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
+ */
+
#include <libopencm3/efm32/tinygecko/gpio.h>
void gpio_set_mode(u32 gpioport, u8 mode, u16 gpios)
diff --git a/lib/efm32/tinygecko/tinygecko.ld b/lib/efm32/tinygecko/tinygecko.ld
index 55d37c6..92f4282 100644
--- a/lib/efm32/tinygecko/tinygecko.ld
+++ b/lib/efm32/tinygecko/tinygecko.ld
@@ -2,7 +2,7 @@
* This file is part of the libopencm3 project.
*
* Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>,
- * 2012 chrysn <chrysn@fsfe.org>
+ * Copyright (C) 2012 chrysn <chrysn@fsfe.org>
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
diff --git a/lib/efm32/tinygecko/vector.c b/lib/efm32/tinygecko/vector.c
index 4c6563e..264426b 100644
--- a/lib/efm32/tinygecko/vector.c
+++ b/lib/efm32/tinygecko/vector.c
@@ -2,7 +2,7 @@
* This file is part of the libopencm3 project.
*
* Copyright (C) 2010 Piotr Esden-Tempski <piotr@esden.net>,
- * 2012 chrysn <chrysn@fsfe.org>
+ * Copyright (C) 2012 chrysn <chrysn@fsfe.org>
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by