summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2017-05-21 00:23:38 +0200
committerPaul Kocialkowski <contact@paulk.fr>2017-05-21 00:23:38 +0200
commitd36ec99a48a6a4ceb138fcdbdf0669082653c00e (patch)
tree7ca6c25411f75283d2519f858256aaf7553cabfa
parent6cc37bfb15d1482d43d29718ac96fcf41db9139a (diff)
downloadorigami-ec-d36ec99a48a6a4ceb138fcdbdf0669082653c00e.tar.gz
origami-ec-d36ec99a48a6a4ceb138fcdbdf0669082653c00e.tar.bz2
origami-ec-d36ec99a48a6a4ceb138fcdbdf0669082653c00e.zip
Update copyright information
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
-rw-r--r--Makefile2
-rw-r--r--common/button.c2
-rw-r--r--common/console.c2
-rw-r--r--common/include/console.h2
-rw-r--r--common/include/core.h2
-rw-r--r--common/include/origami-ec.h2
-rw-r--r--common/include/serial.h2
-rw-r--r--common/include/switch.h2
-rw-r--r--common/origami-ec.c2
-rw-r--r--common/switch.c2
-rw-r--r--device/g505s/config.mk2
-rw-r--r--device/g505s/include/config.h2
-rw-r--r--device/g505s/include/interrupts.h2
-rw-r--r--device/g505s/interrupts.c2
-rw-r--r--device/g505s/switch.c2
-rw-r--r--platform/kb9012/config.mk2
-rw-r--r--platform/kb9012/core.c2
-rw-r--r--platform/kb9012/gpwu.c2
-rw-r--r--platform/kb9012/include/kb9012/core.h2
-rw-r--r--platform/kb9012/include/kb9012/gpwu.h2
-rw-r--r--platform/kb9012/include/kb9012/serial.h2
-rw-r--r--platform/kb9012/serial.c2
22 files changed, 22 insertions, 22 deletions
diff --git a/Makefile b/Makefile
index 04eb4e6..46f9d9a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 2015-2016 Paul Kocialkowski <contact@paulk.fr>
+# Copyright (C) 2015-2017 Paul Kocialkowski <contact@paulk.fr>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/common/button.c b/common/button.c
index 1b2b342..3e505a0 100644
--- a/common/button.c
+++ b/common/button.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015-2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2015-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/common/console.c b/common/console.c
index 4b126ce..b3b3a09 100644
--- a/common/console.c
+++ b/common/console.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015-2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2015-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/common/include/console.h b/common/include/console.h
index bcdb885..83a2532 100644
--- a/common/include/console.h
+++ b/common/include/console.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015-2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2015-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/common/include/core.h b/common/include/core.h
index b19ca69..2052355 100644
--- a/common/include/core.h
+++ b/common/include/core.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015-2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2015-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/common/include/origami-ec.h b/common/include/origami-ec.h
index 83fdd91..e0732f6 100644
--- a/common/include/origami-ec.h
+++ b/common/include/origami-ec.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015-2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2015-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/common/include/serial.h b/common/include/serial.h
index 61d63cc..333afbc 100644
--- a/common/include/serial.h
+++ b/common/include/serial.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015-2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2015-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/common/include/switch.h b/common/include/switch.h
index 488a074..f6567f6 100644
--- a/common/include/switch.h
+++ b/common/include/switch.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2016-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/common/origami-ec.c b/common/origami-ec.c
index 3e470c9..afdd458 100644
--- a/common/origami-ec.c
+++ b/common/origami-ec.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015-2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2015-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/common/switch.c b/common/switch.c
index 267a3c2..bd9b810 100644
--- a/common/switch.c
+++ b/common/switch.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2016-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/device/g505s/config.mk b/device/g505s/config.mk
index 07687aa..e22f2d2 100644
--- a/device/g505s/config.mk
+++ b/device/g505s/config.mk
@@ -1,4 +1,4 @@
-# Copyright (C) 2015-2016 Paul Kocialkowski <contact@paulk.fr>
+# Copyright (C) 2015-2017 Paul Kocialkowski <contact@paulk.fr>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/device/g505s/include/config.h b/device/g505s/include/config.h
index 0452fc2..83b9023 100644
--- a/device/g505s/include/config.h
+++ b/device/g505s/include/config.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015-2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2015-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/device/g505s/include/interrupts.h b/device/g505s/include/interrupts.h
index 58bb82e..19c016d 100644
--- a/device/g505s/include/interrupts.h
+++ b/device/g505s/include/interrupts.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2016-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/device/g505s/interrupts.c b/device/g505s/interrupts.c
index 52aef3c..c8014ad 100644
--- a/device/g505s/interrupts.c
+++ b/device/g505s/interrupts.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2016-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/device/g505s/switch.c b/device/g505s/switch.c
index dab1458..2b05ca4 100644
--- a/device/g505s/switch.c
+++ b/device/g505s/switch.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015-2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2015-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/platform/kb9012/config.mk b/platform/kb9012/config.mk
index 0b2a9cd..5d46ba1 100644
--- a/platform/kb9012/config.mk
+++ b/platform/kb9012/config.mk
@@ -1,4 +1,4 @@
-# Copyright (C) 2015-2016 Paul Kocialkowski <contact@paulk.fr>
+# Copyright (C) 2015-2017 Paul Kocialkowski <contact@paulk.fr>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/platform/kb9012/core.c b/platform/kb9012/core.c
index b2462e9..468d94f 100644
--- a/platform/kb9012/core.c
+++ b/platform/kb9012/core.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015-2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2015-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/platform/kb9012/gpwu.c b/platform/kb9012/gpwu.c
index c75d0eb..118efa9 100644
--- a/platform/kb9012/gpwu.c
+++ b/platform/kb9012/gpwu.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2016-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/platform/kb9012/include/kb9012/core.h b/platform/kb9012/include/kb9012/core.h
index bb501ed..b206d67 100644
--- a/platform/kb9012/include/kb9012/core.h
+++ b/platform/kb9012/include/kb9012/core.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015-2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2015-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/platform/kb9012/include/kb9012/gpwu.h b/platform/kb9012/include/kb9012/gpwu.h
index e1be191..4817036 100644
--- a/platform/kb9012/include/kb9012/gpwu.h
+++ b/platform/kb9012/include/kb9012/gpwu.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2016-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/platform/kb9012/include/kb9012/serial.h b/platform/kb9012/include/kb9012/serial.h
index 6ee6a4d..3e32b14 100644
--- a/platform/kb9012/include/kb9012/serial.h
+++ b/platform/kb9012/include/kb9012/serial.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015-2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2015-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/platform/kb9012/serial.c b/platform/kb9012/serial.c
index 46b6f2b..678973e 100644
--- a/platform/kb9012/serial.c
+++ b/platform/kb9012/serial.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015-2016 Paul Kocialkowski <contact@paulk.fr>
+ * Copyright (C) 2015-2017 Paul Kocialkowski <contact@paulk.fr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by