From patchwork Fri Oct 30 01:41:34 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 10304 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 4E2C0BDB9B for ; Fri, 30 Oct 2020 01:42:28 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id DD89B628A5; Fri, 30 Oct 2020 02:42:27 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="K+tD1CH7"; dkim-atps=neutral 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 703B260353 for ; Fri, 30 Oct 2020 02:42:26 +0100 (CET) Received: from pendragon.lan (62-78-145-57.bb.dnainternet.fi [62.78.145.57]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id D9F5F9B7; Fri, 30 Oct 2020 02:42:25 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1604022146; bh=MBiw9swbsFyQMLOtvXO//eu2iXO5FbsDg8cGr+gDmrI=; h=From:To:Cc:Subject:Date:From; b=K+tD1CH7ZGTxIDNjAQtzWmSlsLtFnUZUmRJvWi3tyeyTV8WpJn8SeB/RCT+PA3obE 8CfoV24pQhXtA+1r1hPj2rlhLrFQNLlsyL8HUaTbw8+25ZdiPBTdutdR1i9/nv1i62 XiKR0YHp9DqxVAJIWQv4OoiU6Twhu2+cRG0/BX3w= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Fri, 30 Oct 2020 03:41:34 +0200 Message-Id: <20201030014134.15851-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] android: jpeg: Use LGPL-2.1 license for post_processor_jpeg.cpp 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: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" The JPEG post-processor is marked as licensed under GPL-2.0-or-later. This is an oversight and unvoluntary. License it under the LGPL-2.1-or-later as the rest of the camera HAL implementation. Signed-off-by: Laurent Pinchart Acked-by: Umang Jain Acked-by: Hirokazu Honda --- src/android/jpeg/post_processor_jpeg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Umang, Hiro-san, as you've both authored commits that touch this file, could you please explicitly reply with an Acked-by ? This is the second time this happens, I think we need a check in either checkstyle.py or in the git pre-push hook. diff --git a/src/android/jpeg/post_processor_jpeg.cpp b/src/android/jpeg/post_processor_jpeg.cpp index b9b9dc0042c9..436a50f85664 100644 --- a/src/android/jpeg/post_processor_jpeg.cpp +++ b/src/android/jpeg/post_processor_jpeg.cpp @@ -1,4 +1,4 @@ -/* SPDX-License-Identifier: GPL-2.0-or-later */ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ /* * Copyright (C) 2020, Google Inc. *