From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2420CC43387 for ; Wed, 16 Jan 2019 10:43:32 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id F320520657 for ; Wed, 16 Jan 2019 10:43:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2392164AbfAPKna (ORCPT ); Wed, 16 Jan 2019 05:43:30 -0500 Received: from Galois.linutronix.de ([146.0.238.70]:44637 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389215AbfAPKn3 (ORCPT ); Wed, 16 Jan 2019 05:43:29 -0500 Received: from localhost ([127.0.0.1] helo=nanos.tec.linutronix.de) by Galois.linutronix.de with esmtp (Exim 4.80) (envelope-from ) id 1gjifN-0005Gq-5M; Wed, 16 Jan 2019 11:43:25 +0100 Message-Id: <20190116102651.489113812@linutronix.de> User-Agent: quilt/0.65 Date: Wed, 16 Jan 2019 11:26:51 +0100 From: Thomas Gleixner To: LKML Cc: Kuninori Morimoto , Simon Horman , Yoshinori Sato , Rich Felker , Andrew Morton , Kate Stewart , Greg Kroah-Hartman , Jonathan Corbet Subject: [patch 0/2] LICENSES: Fix fallout from recent SPDX conversions Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Recent SPDX conversions introduced new wreckage: arch/sh/lib/ashiftrt.S: 1:42 Invalid Exception ID: GCC-exception-2.0 ... arch/sh/include/mach-ecovec24/mach/partner-jet-setup.txt: 1:38 Invalid token: " ,,, The first group is due to using an exception identifier without adding the exception text to the LICENSES directory. The second one is due to the magic conment format in the SuperH bootcode files. At least the first one could have been caught by checkpatch.pl: WARNING: 'SPDX-License-Identifier: GPL-2.0+ WITH GCC-exception-2.0' is not supported in LICENSES/... #38: FILE: arch/sh/lib/ashiftrt.S:1: +/* SPDX-License-Identifier: GPL-2.0+ WITH GCC-exception-2.0 .... The following series addresses both issues. Thanks, tglx