Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4490e3c6 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski
Browse files

ARM: SAMSUNG: Add SPDX license identifiers



Replace GPL license statements with SPDX license identifiers (GPL-1.0+,
GPL-2.0 and GPL-2.0+).

Signed-off-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
parent 049633fc
Loading
Loading
Loading
Loading
+1 −3
Original line number Original line Diff line number Diff line
# arch/arm/plat-samsung/Kconfig
# SPDX-License-Identifier: GPL-2.0
#
#
# Copyright 2009 Simtec Electronics
# Copyright 2009 Simtec Electronics
#
# Licensed under GPLv2


config PLAT_SAMSUNG
config PLAT_SAMSUNG
	bool
	bool
+1 −3
Original line number Original line Diff line number Diff line
# arch/arm/plat-samsung/Makefile
# SPDX-License-Identifier: GPL-2.0
#
#
# Copyright 2009 Simtec Electronics
# Copyright 2009 Simtec Electronics
#
# Licensed under GPLv2


ccflags-$(CONFIG_ARCH_S3C64XX) := -I$(srctree)/arch/arm/mach-s3c64xx/include
ccflags-$(CONFIG_ARCH_S3C64XX) := -I$(srctree)/arch/arm/mach-s3c64xx/include
ccflags-$(CONFIG_ARCH_MULTIPLATFORM) += -I$(srctree)/$(src)/include
ccflags-$(CONFIG_ARCH_MULTIPLATFORM) += -I$(srctree)/$(src)/include
+7 −12
Original line number Original line Diff line number Diff line
/* arch/arm/plat-samsung/adc.c
// SPDX-License-Identifier: GPL-1.0+
 *
//
 * Copyright (c) 2008 Simtec Electronics
// Copyright (c) 2008 Simtec Electronics
 *	http://armlinux.simtec.co.uk/
//	http://armlinux.simtec.co.uk/
 *	Ben Dooks <ben@simtec.co.uk>, <ben-linux@fluff.org>
//	Ben Dooks <ben@simtec.co.uk>, <ben-linux@fluff.org>
 *
//
 * Samsung ADC device core
// Samsung ADC device core
 *
 * 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.
*/


#include <linux/module.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/kernel.h>
+6 −11
Original line number Original line Diff line number Diff line
/* linux/arch/arm/plat-samsung/cpu.c
// SPDX-License-Identifier: GPL-2.0
 *
//
 * Copyright (c) 2009-2011 Samsung Electronics Co., Ltd.
// Copyright (c) 2009-2011 Samsung Electronics Co., Ltd.
 *		http://www.samsung.com
//		http://www.samsung.com
 *
//
 * Samsung CPU Support
// Samsung CPU Support
 *
 * 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/module.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/kernel.h>
+8 −13
Original line number Original line Diff line number Diff line
/* linux/arch/arm/plat-samsung/dev-uart.c
// SPDX-License-Identifier: GPL-2.0
 *	originally from arch/arm/plat-s3c24xx/devs.c
//
 *x
//	originally from arch/arm/plat-s3c24xx/devs.c
 * Copyright (c) 2004 Simtec Electronics
//
 *	Ben Dooks <ben@simtec.co.uk>
// Copyright (c) 2004 Simtec Electronics
 *
//	Ben Dooks <ben@simtec.co.uk>
 * Base S3C24XX platform device definitions
//
 *
// Base S3C24XX platform device 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.
 *
*/


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