From patchwork Fri May 8 01:21:25 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 3709 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 4F000603E1 for ; Fri, 8 May 2020 03:21:35 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="Ul33E4T4"; dkim-atps=neutral Received: from pendragon.bb.dnainternet.fi (81-175-216-236.bb.dnainternet.fi [81.175.216.236]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id B7877501 for ; Fri, 8 May 2020 03:21:34 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1588900894; bh=LbZWQIbAHeBCti7DBLyeoorvVvwfDFNu/wpcpsxOQ9Y=; h=From:To:Subject:Date:From; b=Ul33E4T4VLJAYS3aAy6YMpPVSy7rjjG/YaGDRQsmlARUiY91Tx+kx9R2WJ29qbWix 5+RuoR1pMD6VVHtUqRtQbIFcL0HoXBVcP4ond21bH9f3Y9DvrnWzSgvwSiesdcqpBJ Ug2d8GVkLlvFWzlHerjx8aJaJZNGr4rtKAHduoKQ= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Fri, 8 May 2020 04:21:25 +0300 Message-Id: <20200508012125.7021-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] android: hal: License camera3_hal.cpp as LGPL-2.1-or-later X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 May 2020 01:21:35 -0000 The camera3_hal.cpp is incorrectly licensed as GPL-2.0-or-later, instead of LGPL-2.1-or-later as the rest of the HAL implementation. Fix it. Signed-off-by: Laurent Pinchart Acked-by: Jacopo Mondi --- src/android/camera3_hal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Jacopo, as you're the author of the first commit for this file, could you please ack the patch ? The only other commit is authored by me. diff --git a/src/android/camera3_hal.cpp b/src/android/camera3_hal.cpp index d6fc1ecc01bf..34301ed971b6 100644 --- a/src/android/camera3_hal.cpp +++ b/src/android/camera3_hal.cpp @@ -1,4 +1,4 @@ -/* SPDX-License-Identifier: GPL-2.0-or-later */ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * Copyright (C) 2019, Google Inc. *