Commit 84b21701 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski
Browse files

ARM: S3C24XX: Add SPDX license identifiers



Replace GPL license statements with SPDX license identifiers (GPL-2.0
and GPL-2.0+).  The h1940-bluetooth.c was licensed under GPL-1.0.  This
also adds GPL-2.0 to few files lacking license statement.

Signed-off-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
parent 347863d4
Loading
Loading
Loading
Loading
+1 −3
Original line number Original line Diff line number Diff line
# arch/arm/mach-s3c24xx/Kconfig
# SPDX-License-Identifier: GPL-2.0
#
#
# Copyright (c) 2012 Samsung Electronics Co., Ltd.
# Copyright (c) 2012 Samsung Electronics Co., Ltd.
#		http://www.samsung.com/
#		http://www.samsung.com/
#
#
# Copyright 2007 Simtec Electronics
# Copyright 2007 Simtec Electronics
#
# Licensed under GPLv2


if ARCH_S3C24XX
if ARCH_S3C24XX


+1 −3
Original line number Original line Diff line number Diff line
# arch/arm/mach-s3c24xx/Makefile
# SPDX-License-Identifier: GPL-2.0
#
#
# Copyright (c) 2012 Samsung Electronics Co., Ltd.
# Copyright (c) 2012 Samsung Electronics Co., Ltd.
#		http://www.samsung.com/
#		http://www.samsung.com/
#
#
# Copyright 2007 Simtec Electronics
# Copyright 2007 Simtec Electronics
#
# Licensed under GPLv2


# core
# core


+2 −0
Original line number Original line Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0

ifeq ($(CONFIG_PM_H1940),y)
ifeq ($(CONFIG_PM_H1940),y)
	zreladdr-y	+= 0x30108000
	zreladdr-y	+= 0x30108000
	params_phys-y	:= 0x30100100
	params_phys-y	:= 0x30100100
+2 −5
Original line number Original line Diff line number Diff line
/* SPDX-License-Identifier: GPL-2.0 */
/*
/*
 * Copyright (c) 2005 Simtec Electronics
 * Copyright (c) 2005 Simtec Electronics
 *	http://www.simtec.co.uk/products/
 *	http://www.simtec.co.uk/products/
@@ -6,10 +7,6 @@
 * ANUBIS - CPLD control constants
 * ANUBIS - CPLD control constants
 * ANUBIS - IRQ Number definitions
 * ANUBIS - IRQ Number definitions
 * ANUBIS - Memory map definitions
 * ANUBIS - Memory map definitions
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
 */


#ifndef __MACH_S3C24XX_ANUBIS_H
#ifndef __MACH_S3C24XX_ANUBIS_H
+6 −11
Original line number Original line Diff line number Diff line
/* linux/arch/arm/mach-s3c2410/bast-ide.c
// SPDX-License-Identifier: GPL-2.0
 *
//
 * Copyright 2007 Simtec Electronics
// Copyright 2007 Simtec Electronics
 *	http://www.simtec.co.uk/products/EB2410ITX/
//	http://www.simtec.co.uk/products/EB2410ITX/
 *	http://armlinux.simtec.co.uk/
//	http://armlinux.simtec.co.uk/
 *	Ben Dooks <ben@simtec.co.uk>
//	Ben Dooks <ben@simtec.co.uk>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
*/


#include <linux/kernel.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/types.h>
Loading