Commit 0bbce9eb authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Laurent Pinchart
Browse files

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: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Acked-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: default avatarSimon Horman <horms+renesas@verge.net.au>
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
parent d7cfd259
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
config DRM_RCAR_DU
config DRM_RCAR_DU
	tristate "DRM Support for R-Car Display Unit"
	tristate "DRM Support for R-Car Display Unit"
	depends on DRM && OF
	depends on DRM && OF
+1 −5
Original line number Original line Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0+
/*
/*
 * rcar_du_crtc.c  --  R-Car Display Unit CRTCs
 * rcar_du_crtc.c  --  R-Car Display Unit CRTCs
 *
 *
 * Copyright (C) 2013-2015 Renesas Electronics Corporation
 * Copyright (C) 2013-2015 Renesas Electronics Corporation
 *
 *
 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
 *
 * 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
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */
 */


#include <linux/clk.h>
#include <linux/clk.h>
+1 −5
Original line number Original line Diff line number Diff line
/* SPDX-License-Identifier: GPL-2.0+ */
/*
/*
 * rcar_du_crtc.h  --  R-Car Display Unit CRTCs
 * rcar_du_crtc.h  --  R-Car Display Unit CRTCs
 *
 *
 * Copyright (C) 2013-2015 Renesas Electronics Corporation
 * Copyright (C) 2013-2015 Renesas Electronics Corporation
 *
 *
 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
 *
 * 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
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */
 */


#ifndef __RCAR_DU_CRTC_H__
#ifndef __RCAR_DU_CRTC_H__
+1 −5
Original line number Original line Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0+
/*
/*
 * rcar_du_drv.c  --  R-Car Display Unit DRM driver
 * rcar_du_drv.c  --  R-Car Display Unit DRM driver
 *
 *
 * Copyright (C) 2013-2015 Renesas Electronics Corporation
 * Copyright (C) 2013-2015 Renesas Electronics Corporation
 *
 *
 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
 *
 * 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
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */
 */


#include <linux/clk.h>
#include <linux/clk.h>
+1 −5
Original line number Original line Diff line number Diff line
/* SPDX-License-Identifier: GPL-2.0+ */
/*
/*
 * rcar_du_drv.h  --  R-Car Display Unit DRM driver
 * rcar_du_drv.h  --  R-Car Display Unit DRM driver
 *
 *
 * Copyright (C) 2013-2015 Renesas Electronics Corporation
 * Copyright (C) 2013-2015 Renesas Electronics Corporation
 *
 *
 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
 *
 * 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
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */
 */


#ifndef __RCAR_DU_DRV_H__
#ifndef __RCAR_DU_DRV_H__
Loading