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

PCI/VGA: Replace full MIT license text with SPDX identifier

Per Documentation/process/license-rules.rst, the SPDX MIT identifier is
equivalent to including the entire MIT license text from
LICENSES/preferred/MIT.

Replace the MIT license text with the equivalent SPDX identifier.

Link: https://lore.kernel.org/r/20220224224753.297579-12-helgaas@kernel.org
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>

+1 -22
+1 -22
drivers/pci/vgaarb.c
··· 1 + // SPDX-License-Identifier: MIT 1 2 /* 2 3 * vgaarb.c: Implements the VGA arbitration. For details refer to 3 4 * Documentation/gpu/vgaarbiter.rst 4 5 * 5 - * 6 6 * (C) Copyright 2005 Benjamin Herrenschmidt <benh@kernel.crashing.org> 7 7 * (C) Copyright 2007 Paulo R. Zanoni <przanoni@gmail.com> 8 8 * (C) Copyright 2007, 2009 Tiago Vignatti <vignatti@freedesktop.org> 9 - * 10 - * Permission is hereby granted, free of charge, to any person obtaining a 11 - * copy of this software and associated documentation files (the "Software"), 12 - * to deal in the Software without restriction, including without limitation 13 - * the rights to use, copy, modify, merge, publish, distribute, sublicense, 14 - * and/or sell copies of the Software, and to permit persons to whom the 15 - * Software is furnished to do so, subject to the following conditions: 16 - * 17 - * The above copyright notice and this permission notice (including the next 18 - * paragraph) shall be included in all copies or substantial portions of the 19 - * Software. 20 - * 21 - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 23 - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 24 - * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 25 - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 26 - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 27 - * DEALINGS 28 - * IN THE SOFTWARE. 29 - * 30 9 */ 31 10 32 11 #define pr_fmt(fmt) "vgaarb: " fmt