Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

nvme-fabrics: convert to SPDX identifiers

Update license to use SPDX-License-Identifier instead of verbose license
text.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>

+2 -18
+1 -9
drivers/nvme/host/fabrics.c
··· 1 + // SPDX-License-Identifier: GPL-2.0 1 2 /* 2 3 * NVMe over Fabrics common host code. 3 4 * Copyright (c) 2015-2016 HGST, a Western Digital Company. 4 - * 5 - * This program is free software; you can redistribute it and/or modify it 6 - * under the terms and conditions of the GNU General Public License, 7 - * version 2, as published by the Free Software Foundation. 8 - * 9 - * This program is distributed in the hope it will be useful, but WITHOUT 10 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12 - * more details. 13 5 */ 14 6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 15 7 #include <linux/init.h>
+1 -9
drivers/nvme/host/fabrics.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0 */ 1 2 /* 2 3 * NVMe over Fabrics common host code. 3 4 * Copyright (c) 2015-2016 HGST, a Western Digital Company. 4 - * 5 - * This program is free software; you can redistribute it and/or modify it 6 - * under the terms and conditions of the GNU General Public License, 7 - * version 2, as published by the Free Software Foundation. 8 - * 9 - * This program is distributed in the hope it will be useful, but WITHOUT 10 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12 - * more details. 13 5 */ 14 6 #ifndef _NVME_FABRICS_H 15 7 #define _NVME_FABRICS_H 1