From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Google-Smtp-Source: AH8x226GT+OpVXutNhSnGsktdgZ5t9v7DpZF5k/JuPTv5l6Dkn9KoE/At+eF0izJDTzuTHzC+sm0 ARC-Seal: i=1; a=rsa-sha256; t=1516634297; cv=none; d=google.com; s=arc-20160816; b=paWF9jfYX7PSCve20gOTECk6o21Dgi3EeUxMnYq4ogeAhrOHKQXy0q7cxYP1JJbsxg F0Fil4YHmtiT19bKFN9x1QhbFiAXeTb8S4ccOnkCaH3hYRM6JyJdY1x2KXZOmtI8EMRn U3o2wmr4qWJPeq2c/FpE1kSLuSU69CfiyFK941ia1yA1T4WGwmsE6TiN03VVj96wdr/a PhW/TC7Tj5HTEM0H7CgUVG5qCfnZx42BldsL4LFWc2hv0GtHcR4zlQKKEYO3mxAFn43Q 0cF+Cn4lhZCERWfO+Slialv0ZSFhCvFTsva/r5hoKOaCiPqH7ATscdz2CNE7JKmncwxI hm8g== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=message-id:date:subject:cc:to:from:arc-authentication-results; bh=Z1cx6BFrFhkT71VyhjPIJCwiCMHXQKo98e+3U2X0Hnw=; b=wcmJlTv518wbXJP6TvHTVP1R2xSx3Q5tw8dN1DneBpUbH71bleSXNc7joFSOE7CwyM PUnq2OUZPR4BYq8RSlMluLa789KWLSpvQq3P4OzJCv82o+dauqE/3vMQduDxYAYSmHPK RgVDxhLbXvx+4+9ompvSyi7Y0Muz+InLo3VUNyt0XllIcEL4ML5rYnwa0iBhYZLOHjVp 8SQyg51tSnwyPXk3smmVQ/zrpz/O90xm6YJtNcDd4JEPB/2vdZNDSot+fXz3fz4DduQY B+6y9DUNWwFr1ky8I78QiZo7JTNqQ3fd3OGH+RXz7OdsSDCDkKiAHdzvvjw8EV8RVyQz 2i+Q== ARC-Authentication-Results: i=1; mx.google.com; spf=softfail (google.com: domain of transitioning gregkh@linuxfoundation.org does not designate 90.92.71.90 as permitted sender) smtp.mailfrom=gregkh@linuxfoundation.org Authentication-Results: mx.google.com; spf=softfail (google.com: domain of transitioning gregkh@linuxfoundation.org does not designate 90.92.71.90 as permitted sender) smtp.mailfrom=gregkh@linuxfoundation.org From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman Subject: [PATCH] sysfs: use SPDX identifiers Date: Mon, 22 Jan 2018 16:18:13 +0100 Message-Id: <20180122151813.22316-1-gregkh@linuxfoundation.org> X-Mailer: git-send-email 2.16.0 X-getmail-retrieved-from-mailbox: INBOX X-GMAIL-LABELS: =?utf-8?b?IlxcU2VudCI=?= X-GMAIL-THRID: =?utf-8?q?1590306325000676779?= X-GMAIL-MSGID: =?utf-8?q?1590306325000676779?= X-Mailing-List: linux-kernel@vger.kernel.org List-ID: Move the license "mark" of the sysfs files to be in SPDX form, instead of the custom text that it currently is in. This is in a quest to get rid of the 700+ different ways we say "GPLv2" in the kernel tree. Signed-off-by: Greg Kroah-Hartman --- fs/sysfs/dir.c | 3 +-- fs/sysfs/file.c | 3 +-- fs/sysfs/group.c | 4 +--- fs/sysfs/mount.c | 3 +-- fs/sysfs/symlink.c | 3 +-- fs/sysfs/sysfs.h | 3 +-- 6 files changed, 6 insertions(+), 13 deletions(-) diff --git a/fs/sysfs/dir.c b/fs/sysfs/dir.c index 3a36a48a4b3f..c9877fc1c5fe 100644 --- a/fs/sysfs/dir.c +++ b/fs/sysfs/dir.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0 /* * fs/sysfs/dir.c - sysfs core and dir operation implementation * @@ -5,8 +6,6 @@ * Copyright (c) 2007 SUSE Linux Products GmbH * Copyright (c) 2007 Tejun Heo * - * This file is released under the GPLv2. - * * Please see Documentation/filesystems/sysfs.txt for more information. */ diff --git a/fs/sysfs/file.c b/fs/sysfs/file.c index 39c75a86c67f..39da8e86f10a 100644 --- a/fs/sysfs/file.c +++ b/fs/sysfs/file.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0 /* * fs/sysfs/file.c - sysfs regular (text) file implementation * @@ -5,8 +6,6 @@ * Copyright (c) 2007 SUSE Linux Products GmbH * Copyright (c) 2007 Tejun Heo * - * This file is released under the GPLv2. - * * Please see Documentation/filesystems/sysfs.txt for more information. */ diff --git a/fs/sysfs/group.c b/fs/sysfs/group.c index 3f8efe8f387b..4802ec0e1e3a 100644 --- a/fs/sysfs/group.c +++ b/fs/sysfs/group.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0 /* * fs/sysfs/group.c - Operations for adding/removing multiple files at once. * @@ -5,9 +6,6 @@ * Copyright (c) 2003 Open Source Development Lab * Copyright (c) 2013 Greg Kroah-Hartman * Copyright (c) 2013 The Linux Foundation - * - * This file is released undert the GPL v2. - * */ #include diff --git a/fs/sysfs/mount.c b/fs/sysfs/mount.c index fb49510c5dcf..1823a1be492e 100644 --- a/fs/sysfs/mount.c +++ b/fs/sysfs/mount.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0 /* * fs/sysfs/symlink.c - operations for initializing and mounting sysfs * @@ -5,8 +6,6 @@ * Copyright (c) 2007 SUSE Linux Products GmbH * Copyright (c) 2007 Tejun Heo * - * This file is released under the GPLv2. - * * Please see Documentation/filesystems/sysfs.txt for more information. */ diff --git a/fs/sysfs/symlink.c b/fs/sysfs/symlink.c index aecb15f84557..8664db25a9a6 100644 --- a/fs/sysfs/symlink.c +++ b/fs/sysfs/symlink.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0 /* * fs/sysfs/symlink.c - sysfs symlink implementation * @@ -5,8 +6,6 @@ * Copyright (c) 2007 SUSE Linux Products GmbH * Copyright (c) 2007 Tejun Heo * - * This file is released under the GPLv2. - * * Please see Documentation/filesystems/sysfs.txt for more information. */ diff --git a/fs/sysfs/sysfs.h b/fs/sysfs/sysfs.h index 0e2f1cccb812..d098e015fcc9 100644 --- a/fs/sysfs/sysfs.h +++ b/fs/sysfs/sysfs.h @@ -1,11 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0 */ /* * fs/sysfs/sysfs.h - sysfs internal header file * * Copyright (c) 2001-3 Patrick Mochel * Copyright (c) 2007 SUSE Linux Products GmbH * Copyright (c) 2007 Tejun Heo - * - * This file is released under the GPLv2. */ #ifndef __SYSFS_INTERNAL_H -- 2.16.0