diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2018-07-25 22:37:32 -0400 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2018-09-14 06:54:03 -0400 |
commit | 0bbce9eb7738b1a9f4c03dc9fb28cd93bd19ac8a (patch) | |
tree | 15145eb09f4e289144a41beca5289d5e3c551858 | |
parent | d7cfd259048b6f774c9a0c95f1356c386341942b (diff) |
drm: rcar-du: Convert to SPDX identifiers
Kconfig doesn't have license line, thus, it is GPL-2.0 as default.
rcar_du_regs.h, rcar_lvds_regs.h are GPL-2.0,
and all other files are GPL-2.0+ as original license.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rw-r--r-- | drivers/gpu/drm/rcar-du/Kconfig | 1 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_crtc.c | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_crtc.h | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_drv.c | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_drv.h | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_encoder.c | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_encoder.h | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_group.c | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_group.h | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_kms.c | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_kms.h | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_plane.c | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_plane.h | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_regs.h | 5 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_vsp.c | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_du_vsp.h | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_dw_hdmi.c | 6 | ||||
-rw-r--r-- | drivers/gpu/drm/rcar-du/rcar_lvds_regs.h | 5 |
18 files changed, 18 insertions, 83 deletions
diff --git a/drivers/gpu/drm/rcar-du/Kconfig b/drivers/gpu/drm/rcar-du/Kconfig index edde8d4b87a3..225141656e19 100644 --- a/drivers/gpu/drm/rcar-du/Kconfig +++ b/drivers/gpu/drm/rcar-du/Kconfig | |||
@@ -1,3 +1,4 @@ | |||
1 | # SPDX-License-Identifier: GPL-2.0 | ||
1 | config DRM_RCAR_DU | 2 | config DRM_RCAR_DU |
2 | tristate "DRM Support for R-Car Display Unit" | 3 | tristate "DRM Support for R-Car Display Unit" |
3 | depends on DRM && OF | 4 | depends on DRM && OF |
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_crtc.c b/drivers/gpu/drm/rcar-du/rcar_du_crtc.c index 8a9e5e6f16b4..578047986a29 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_crtc.c +++ b/drivers/gpu/drm/rcar-du/rcar_du_crtc.c | |||
@@ -1,14 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0+ | ||
1 | /* | 2 | /* |
2 | * rcar_du_crtc.c -- R-Car Display Unit CRTCs | 3 | * rcar_du_crtc.c -- R-Car Display Unit CRTCs |
3 | * | 4 | * |
4 | * Copyright (C) 2013-2015 Renesas Electronics Corporation | 5 | * Copyright (C) 2013-2015 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | */ | 8 | */ |
13 | 9 | ||
14 | #include <linux/clk.h> | 10 | #include <linux/clk.h> |
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_crtc.h b/drivers/gpu/drm/rcar-du/rcar_du_crtc.h index 592c79993e08..4990bbe9ba26 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_crtc.h +++ b/drivers/gpu/drm/rcar-du/rcar_du_crtc.h | |||
@@ -1,14 +1,10 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0+ */ | ||
1 | /* | 2 | /* |
2 | * rcar_du_crtc.h -- R-Car Display Unit CRTCs | 3 | * rcar_du_crtc.h -- R-Car Display Unit CRTCs |
3 | * | 4 | * |
4 | * Copyright (C) 2013-2015 Renesas Electronics Corporation | 5 | * Copyright (C) 2013-2015 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | */ | 8 | */ |
13 | 9 | ||
14 | #ifndef __RCAR_DU_CRTC_H__ | 10 | #ifndef __RCAR_DU_CRTC_H__ |
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_drv.c b/drivers/gpu/drm/rcar-du/rcar_du_drv.c index 02aee6cb0e53..a04e0a1fefc9 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_drv.c +++ b/drivers/gpu/drm/rcar-du/rcar_du_drv.c | |||
@@ -1,14 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0+ | ||
1 | /* | 2 | /* |
2 | * rcar_du_drv.c -- R-Car Display Unit DRM driver | 3 | * rcar_du_drv.c -- R-Car Display Unit DRM driver |
3 | * | 4 | * |
4 | * Copyright (C) 2013-2015 Renesas Electronics Corporation | 5 | * Copyright (C) 2013-2015 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | */ | 8 | */ |
13 | 9 | ||
14 | #include <linux/clk.h> | 10 | #include <linux/clk.h> |
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_drv.h b/drivers/gpu/drm/rcar-du/rcar_du_drv.h index b3a25e8e07d0..43a149dafa65 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_drv.h +++ b/drivers/gpu/drm/rcar-du/rcar_du_drv.h | |||
@@ -1,14 +1,10 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0+ */ | ||
1 | /* | 2 | /* |
2 | * rcar_du_drv.h -- R-Car Display Unit DRM driver | 3 | * rcar_du_drv.h -- R-Car Display Unit DRM driver |
3 | * | 4 | * |
4 | * Copyright (C) 2013-2015 Renesas Electronics Corporation | 5 | * Copyright (C) 2013-2015 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | */ | 8 | */ |
13 | 9 | ||
14 | #ifndef __RCAR_DU_DRV_H__ | 10 | #ifndef __RCAR_DU_DRV_H__ |
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_encoder.c b/drivers/gpu/drm/rcar-du/rcar_du_encoder.c index f9c933d3bae6..1877764bd6d9 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_encoder.c +++ b/drivers/gpu/drm/rcar-du/rcar_du_encoder.c | |||
@@ -1,14 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0+ | ||
1 | /* | 2 | /* |
2 | * rcar_du_encoder.c -- R-Car Display Unit Encoder | 3 | * rcar_du_encoder.c -- R-Car Display Unit Encoder |
3 | * | 4 | * |
4 | * Copyright (C) 2013-2014 Renesas Electronics Corporation | 5 | * Copyright (C) 2013-2014 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | */ | 8 | */ |
13 | 9 | ||
14 | #include <linux/export.h> | 10 | #include <linux/export.h> |
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_encoder.h b/drivers/gpu/drm/rcar-du/rcar_du_encoder.h index 2d2abcacd169..ce3cbc85695e 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_encoder.h +++ b/drivers/gpu/drm/rcar-du/rcar_du_encoder.h | |||
@@ -1,14 +1,10 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0+ */ | ||
1 | /* | 2 | /* |
2 | * rcar_du_encoder.h -- R-Car Display Unit Encoder | 3 | * rcar_du_encoder.h -- R-Car Display Unit Encoder |
3 | * | 4 | * |
4 | * Copyright (C) 2013-2014 Renesas Electronics Corporation | 5 | * Copyright (C) 2013-2014 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | */ | 8 | */ |
13 | 9 | ||
14 | #ifndef __RCAR_DU_ENCODER_H__ | 10 | #ifndef __RCAR_DU_ENCODER_H__ |
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_group.c b/drivers/gpu/drm/rcar-du/rcar_du_group.c index d539cb290a35..ef2c177afb6d 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_group.c +++ b/drivers/gpu/drm/rcar-du/rcar_du_group.c | |||
@@ -1,14 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0+ | ||
1 | /* | 2 | /* |
2 | * rcar_du_group.c -- R-Car Display Unit Channels Pair | 3 | * rcar_du_group.c -- R-Car Display Unit Channels Pair |
3 | * | 4 | * |
4 | * Copyright (C) 2013-2015 Renesas Electronics Corporation | 5 | * Copyright (C) 2013-2015 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | */ | 8 | */ |
13 | 9 | ||
14 | /* | 10 | /* |
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_group.h b/drivers/gpu/drm/rcar-du/rcar_du_group.h index 42105aedecc8..87950c1f6a52 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_group.h +++ b/drivers/gpu/drm/rcar-du/rcar_du_group.h | |||
@@ -1,14 +1,10 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0+ */ | ||
1 | /* | 2 | /* |
2 | * rcar_du_group.c -- R-Car Display Unit Planes and CRTCs Group | 3 | * rcar_du_group.c -- R-Car Display Unit Planes and CRTCs Group |
3 | * | 4 | * |
4 | * Copyright (C) 2013-2014 Renesas Electronics Corporation | 5 | * Copyright (C) 2013-2014 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | */ | 8 | */ |
13 | 9 | ||
14 | #ifndef __RCAR_DU_GROUP_H__ | 10 | #ifndef __RCAR_DU_GROUP_H__ |
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_kms.c b/drivers/gpu/drm/rcar-du/rcar_du_kms.c index f0bc7cc0e913..ed7fa3204892 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_kms.c +++ b/drivers/gpu/drm/rcar-du/rcar_du_kms.c | |||
@@ -1,14 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0+ | ||
1 | /* | 2 | /* |
2 | * rcar_du_kms.c -- R-Car Display Unit Mode Setting | 3 | * rcar_du_kms.c -- R-Car Display Unit Mode Setting |
3 | * | 4 | * |
4 | * Copyright (C) 2013-2015 Renesas Electronics Corporation | 5 | * Copyright (C) 2013-2015 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | */ | 8 | */ |
13 | 9 | ||
14 | #include <drm/drmP.h> | 10 | #include <drm/drmP.h> |
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_kms.h b/drivers/gpu/drm/rcar-du/rcar_du_kms.h index 07951d5fe38b..e171527abdaa 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_kms.h +++ b/drivers/gpu/drm/rcar-du/rcar_du_kms.h | |||
@@ -1,14 +1,10 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0+ */ | ||
1 | /* | 2 | /* |
2 | * rcar_du_kms.h -- R-Car Display Unit Mode Setting | 3 | * rcar_du_kms.h -- R-Car Display Unit Mode Setting |
3 | * | 4 | * |
4 | * Copyright (C) 2013-2014 Renesas Electronics Corporation | 5 | * Copyright (C) 2013-2014 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | */ | 8 | */ |
13 | 9 | ||
14 | #ifndef __RCAR_DU_KMS_H__ | 10 | #ifndef __RCAR_DU_KMS_H__ |
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_plane.c b/drivers/gpu/drm/rcar-du/rcar_du_plane.c index 8861e715c248..9e07758a755c 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_plane.c +++ b/drivers/gpu/drm/rcar-du/rcar_du_plane.c | |||
@@ -1,14 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0+ | ||
1 | /* | 2 | /* |
2 | * rcar_du_plane.c -- R-Car Display Unit Planes | 3 | * rcar_du_plane.c -- R-Car Display Unit Planes |
3 | * | 4 | * |
4 | * Copyright (C) 2013-2015 Renesas Electronics Corporation | 5 | * Copyright (C) 2013-2015 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | */ | 8 | */ |
13 | 9 | ||
14 | #include <drm/drmP.h> | 10 | #include <drm/drmP.h> |
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_plane.h b/drivers/gpu/drm/rcar-du/rcar_du_plane.h index 5c19c69e4691..2f223a4c1d33 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_plane.h +++ b/drivers/gpu/drm/rcar-du/rcar_du_plane.h | |||
@@ -1,14 +1,10 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0+ */ | ||
1 | /* | 2 | /* |
2 | * rcar_du_plane.h -- R-Car Display Unit Planes | 3 | * rcar_du_plane.h -- R-Car Display Unit Planes |
3 | * | 4 | * |
4 | * Copyright (C) 2013-2014 Renesas Electronics Corporation | 5 | * Copyright (C) 2013-2014 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | */ | 8 | */ |
13 | 9 | ||
14 | #ifndef __RCAR_DU_PLANE_H__ | 10 | #ifndef __RCAR_DU_PLANE_H__ |
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_regs.h b/drivers/gpu/drm/rcar-du/rcar_du_regs.h index 9dfd220ceda1..f1417248f7e1 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_regs.h +++ b/drivers/gpu/drm/rcar-du/rcar_du_regs.h | |||
@@ -1,13 +1,10 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0 */ | ||
1 | /* | 2 | /* |
2 | * rcar_du_regs.h -- R-Car Display Unit Registers Definitions | 3 | * rcar_du_regs.h -- R-Car Display Unit Registers Definitions |
3 | * | 4 | * |
4 | * Copyright (C) 2013-2015 Renesas Electronics Corporation | 5 | * Copyright (C) 2013-2015 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 | ||
10 | * as published by the Free Software Foundation. | ||
11 | */ | 8 | */ |
12 | 9 | ||
13 | #ifndef __RCAR_DU_REGS_H__ | 10 | #ifndef __RCAR_DU_REGS_H__ |
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_vsp.c b/drivers/gpu/drm/rcar-du/rcar_du_vsp.c index 45eb777a16a4..e991642afa4f 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_vsp.c +++ b/drivers/gpu/drm/rcar-du/rcar_du_vsp.c | |||
@@ -1,14 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0+ | ||
1 | /* | 2 | /* |
2 | * rcar_du_vsp.h -- R-Car Display Unit VSP-Based Compositor | 3 | * rcar_du_vsp.h -- R-Car Display Unit VSP-Based Compositor |
3 | * | 4 | * |
4 | * Copyright (C) 2015 Renesas Electronics Corporation | 5 | * Copyright (C) 2015 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | */ | 8 | */ |
13 | 9 | ||
14 | #include <drm/drmP.h> | 10 | #include <drm/drmP.h> |
diff --git a/drivers/gpu/drm/rcar-du/rcar_du_vsp.h b/drivers/gpu/drm/rcar-du/rcar_du_vsp.h index 8a8a25c8c8e8..e8c14dc5cb93 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_vsp.h +++ b/drivers/gpu/drm/rcar-du/rcar_du_vsp.h | |||
@@ -1,14 +1,10 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0+ */ | ||
1 | /* | 2 | /* |
2 | * rcar_du_vsp.h -- R-Car Display Unit VSP-Based Compositor | 3 | * rcar_du_vsp.h -- R-Car Display Unit VSP-Based Compositor |
3 | * | 4 | * |
4 | * Copyright (C) 2015 Renesas Electronics Corporation | 5 | * Copyright (C) 2015 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | */ | 8 | */ |
13 | 9 | ||
14 | #ifndef __RCAR_DU_VSP_H__ | 10 | #ifndef __RCAR_DU_VSP_H__ |
diff --git a/drivers/gpu/drm/rcar-du/rcar_dw_hdmi.c b/drivers/gpu/drm/rcar-du/rcar_dw_hdmi.c index 76210ae25094..75490a3e0a2a 100644 --- a/drivers/gpu/drm/rcar-du/rcar_dw_hdmi.c +++ b/drivers/gpu/drm/rcar-du/rcar_dw_hdmi.c | |||
@@ -1,14 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0+ | ||
1 | /* | 2 | /* |
2 | * R-Car Gen3 HDMI PHY | 3 | * R-Car Gen3 HDMI PHY |
3 | * | 4 | * |
4 | * Copyright (C) 2016 Renesas Electronics Corporation | 5 | * Copyright (C) 2016 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | */ | 8 | */ |
13 | 9 | ||
14 | #include <linux/module.h> | 10 | #include <linux/module.h> |
diff --git a/drivers/gpu/drm/rcar-du/rcar_lvds_regs.h b/drivers/gpu/drm/rcar-du/rcar_lvds_regs.h index 2896835ca7e9..4870f50d9bec 100644 --- a/drivers/gpu/drm/rcar-du/rcar_lvds_regs.h +++ b/drivers/gpu/drm/rcar-du/rcar_lvds_regs.h | |||
@@ -1,13 +1,10 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0 */ | ||
1 | /* | 2 | /* |
2 | * rcar_lvds_regs.h -- R-Car LVDS Interface Registers Definitions | 3 | * rcar_lvds_regs.h -- R-Car LVDS Interface Registers Definitions |
3 | * | 4 | * |
4 | * Copyright (C) 2013-2015 Renesas Electronics Corporation | 5 | * Copyright (C) 2013-2015 Renesas Electronics Corporation |
5 | * | 6 | * |
6 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) | 7 | * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 | ||
10 | * as published by the Free Software Foundation. | ||
11 | */ | 8 | */ |
12 | 9 | ||
13 | #ifndef __RCAR_LVDS_REGS_H__ | 10 | #ifndef __RCAR_LVDS_REGS_H__ |