aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorJames Hogan <james.hogan@imgtec.com>2014-03-26 17:08:33 -0400
committerMauro Carvalho Chehab <m.chehab@samsung.com>2014-06-17 11:04:55 -0400
commit2ac6f6305efef8c10994be48b20723cc70654189 (patch)
tree120ac27fbab1704141d5be9fd9ba52e9f8e22597 /drivers/media
parent163438b8c76aa0a49dd89bae88ad7cfb3e189c64 (diff)
[media] rc: img-ir: Expand copyright headers with GPL notices
Add the basic GPLv2+ license notice to the copyright headers at the top of all the source files in the img-ir driver. Reported-by: David Härdeman <david@hardeman.nu> Signed-off-by: James Hogan <james.hogan@imgtec.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/rc/img-ir/img-ir-core.c5
-rw-r--r--drivers/media/rc/img-ir/img-ir-hw.c5
-rw-r--r--drivers/media/rc/img-ir/img-ir-hw.h5
-rw-r--r--drivers/media/rc/img-ir/img-ir-jvc.c5
-rw-r--r--drivers/media/rc/img-ir/img-ir-nec.c5
-rw-r--r--drivers/media/rc/img-ir/img-ir-raw.c5
-rw-r--r--drivers/media/rc/img-ir/img-ir-raw.h5
-rw-r--r--drivers/media/rc/img-ir/img-ir-sanyo.c5
-rw-r--r--drivers/media/rc/img-ir/img-ir-sharp.c5
-rw-r--r--drivers/media/rc/img-ir/img-ir-sony.c5
-rw-r--r--drivers/media/rc/img-ir/img-ir.h5
11 files changed, 55 insertions, 0 deletions
diff --git a/drivers/media/rc/img-ir/img-ir-core.c b/drivers/media/rc/img-ir/img-ir-core.c
index 6b7834834fb8..a0cac2f09109 100644
--- a/drivers/media/rc/img-ir/img-ir-core.c
+++ b/drivers/media/rc/img-ir/img-ir-core.c
@@ -3,6 +3,11 @@
3 * 3 *
4 * Copyright 2010-2014 Imagination Technologies Ltd. 4 * Copyright 2010-2014 Imagination Technologies Ltd.
5 * 5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 *
6 * This contains core img-ir code for setting up the driver. The two interfaces 11 * This contains core img-ir code for setting up the driver. The two interfaces
7 * (raw and hardware decode) are handled separately. 12 * (raw and hardware decode) are handled separately.
8 */ 13 */
diff --git a/drivers/media/rc/img-ir/img-ir-hw.c b/drivers/media/rc/img-ir/img-ir-hw.c
index 0127dd257a57..153c0840bf4c 100644
--- a/drivers/media/rc/img-ir/img-ir-hw.c
+++ b/drivers/media/rc/img-ir/img-ir-hw.c
@@ -3,6 +3,11 @@
3 * 3 *
4 * Copyright 2010-2014 Imagination Technologies Ltd. 4 * Copyright 2010-2014 Imagination Technologies Ltd.
5 * 5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 *
6 * This ties into the input subsystem using the RC-core. Protocol support is 11 * This ties into the input subsystem using the RC-core. Protocol support is
7 * provided in separate modules which provide the parameters and scancode 12 * provided in separate modules which provide the parameters and scancode
8 * translation functions to set up the hardware decoder and interpret the 13 * translation functions to set up the hardware decoder and interpret the
diff --git a/drivers/media/rc/img-ir/img-ir-hw.h b/drivers/media/rc/img-ir/img-ir-hw.h
index 6c9a94a81190..450f17dfb66a 100644
--- a/drivers/media/rc/img-ir/img-ir-hw.h
+++ b/drivers/media/rc/img-ir/img-ir-hw.h
@@ -2,6 +2,11 @@
2 * ImgTec IR Hardware Decoder found in PowerDown Controller. 2 * ImgTec IR Hardware Decoder found in PowerDown Controller.
3 * 3 *
4 * Copyright 2010-2014 Imagination Technologies Ltd. 4 * Copyright 2010-2014 Imagination Technologies Ltd.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
5 */ 10 */
6 11
7#ifndef _IMG_IR_HW_H_ 12#ifndef _IMG_IR_HW_H_
diff --git a/drivers/media/rc/img-ir/img-ir-jvc.c b/drivers/media/rc/img-ir/img-ir-jvc.c
index 10209d200efb..85ee90f53242 100644
--- a/drivers/media/rc/img-ir/img-ir-jvc.c
+++ b/drivers/media/rc/img-ir/img-ir-jvc.c
@@ -2,6 +2,11 @@
2 * ImgTec IR Decoder setup for JVC protocol. 2 * ImgTec IR Decoder setup for JVC protocol.
3 * 3 *
4 * Copyright 2012-2014 Imagination Technologies Ltd. 4 * Copyright 2012-2014 Imagination Technologies Ltd.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
5 */ 10 */
6 11
7#include "img-ir-hw.h" 12#include "img-ir-hw.h"
diff --git a/drivers/media/rc/img-ir/img-ir-nec.c b/drivers/media/rc/img-ir/img-ir-nec.c
index 751d9d945269..f7520e25fbdb 100644
--- a/drivers/media/rc/img-ir/img-ir-nec.c
+++ b/drivers/media/rc/img-ir/img-ir-nec.c
@@ -2,6 +2,11 @@
2 * ImgTec IR Decoder setup for NEC protocol. 2 * ImgTec IR Decoder setup for NEC protocol.
3 * 3 *
4 * Copyright 2010-2014 Imagination Technologies Ltd. 4 * Copyright 2010-2014 Imagination Technologies Ltd.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
5 */ 10 */
6 11
7#include "img-ir-hw.h" 12#include "img-ir-hw.h"
diff --git a/drivers/media/rc/img-ir/img-ir-raw.c b/drivers/media/rc/img-ir/img-ir-raw.c
index cfb01d9e571a..33f37ed87ad2 100644
--- a/drivers/media/rc/img-ir/img-ir-raw.c
+++ b/drivers/media/rc/img-ir/img-ir-raw.c
@@ -3,6 +3,11 @@
3 * 3 *
4 * Copyright 2010-2014 Imagination Technologies Ltd. 4 * Copyright 2010-2014 Imagination Technologies Ltd.
5 * 5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 *
6 * This ties into the input subsystem using the RC-core in raw mode. Raw IR 11 * This ties into the input subsystem using the RC-core in raw mode. Raw IR
7 * signal edges are reported and decoded by generic software decoders. 12 * signal edges are reported and decoded by generic software decoders.
8 */ 13 */
diff --git a/drivers/media/rc/img-ir/img-ir-raw.h b/drivers/media/rc/img-ir/img-ir-raw.h
index 9802ffd51b9a..4c9b7676e6fc 100644
--- a/drivers/media/rc/img-ir/img-ir-raw.h
+++ b/drivers/media/rc/img-ir/img-ir-raw.h
@@ -2,6 +2,11 @@
2 * ImgTec IR Raw Decoder found in PowerDown Controller. 2 * ImgTec IR Raw Decoder found in PowerDown Controller.
3 * 3 *
4 * Copyright 2010-2014 Imagination Technologies Ltd. 4 * Copyright 2010-2014 Imagination Technologies Ltd.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
5 */ 10 */
6 11
7#ifndef _IMG_IR_RAW_H_ 12#ifndef _IMG_IR_RAW_H_
diff --git a/drivers/media/rc/img-ir/img-ir-sanyo.c b/drivers/media/rc/img-ir/img-ir-sanyo.c
index c2c763e08a41..6755c945bce8 100644
--- a/drivers/media/rc/img-ir/img-ir-sanyo.c
+++ b/drivers/media/rc/img-ir/img-ir-sanyo.c
@@ -3,6 +3,11 @@
3 * 3 *
4 * Copyright 2012-2014 Imagination Technologies Ltd. 4 * Copyright 2012-2014 Imagination Technologies Ltd.
5 * 5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 *
6 * From ir-sanyo-decoder.c: 11 * From ir-sanyo-decoder.c:
7 * 12 *
8 * This protocol uses the NEC protocol timings. However, data is formatted as: 13 * This protocol uses the NEC protocol timings. However, data is formatted as:
diff --git a/drivers/media/rc/img-ir/img-ir-sharp.c b/drivers/media/rc/img-ir/img-ir-sharp.c
index 3397cc5a6794..5867be088cce 100644
--- a/drivers/media/rc/img-ir/img-ir-sharp.c
+++ b/drivers/media/rc/img-ir/img-ir-sharp.c
@@ -2,6 +2,11 @@
2 * ImgTec IR Decoder setup for Sharp protocol. 2 * ImgTec IR Decoder setup for Sharp protocol.
3 * 3 *
4 * Copyright 2012-2014 Imagination Technologies Ltd. 4 * Copyright 2012-2014 Imagination Technologies Ltd.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
5 */ 10 */
6 11
7#include "img-ir-hw.h" 12#include "img-ir-hw.h"
diff --git a/drivers/media/rc/img-ir/img-ir-sony.c b/drivers/media/rc/img-ir/img-ir-sony.c
index 993409a51a71..b9029aecceac 100644
--- a/drivers/media/rc/img-ir/img-ir-sony.c
+++ b/drivers/media/rc/img-ir/img-ir-sony.c
@@ -2,6 +2,11 @@
2 * ImgTec IR Decoder setup for Sony (SIRC) protocol. 2 * ImgTec IR Decoder setup for Sony (SIRC) protocol.
3 * 3 *
4 * Copyright 2012-2014 Imagination Technologies Ltd. 4 * Copyright 2012-2014 Imagination Technologies Ltd.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
5 */ 10 */
6 11
7#include "img-ir-hw.h" 12#include "img-ir-hw.h"
diff --git a/drivers/media/rc/img-ir/img-ir.h b/drivers/media/rc/img-ir/img-ir.h
index afb189394af9..2ddf56083182 100644
--- a/drivers/media/rc/img-ir/img-ir.h
+++ b/drivers/media/rc/img-ir/img-ir.h
@@ -2,6 +2,11 @@
2 * ImgTec IR Decoder found in PowerDown Controller. 2 * ImgTec IR Decoder found in PowerDown Controller.
3 * 3 *
4 * Copyright 2010-2014 Imagination Technologies Ltd. 4 * Copyright 2010-2014 Imagination Technologies Ltd.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
5 */ 10 */
6 11
7#ifndef _IMG_IR_H_ 12#ifndef _IMG_IR_H_