From patchwork Mon Oct 28 10:52:11 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 2283 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 46F666017E for ; Mon, 28 Oct 2019 11:52:23 +0100 (CET) Received: from pendragon.ideasonboard.com (unknown [91.217.168.176]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id EC1B5325 for ; Mon, 28 Oct 2019 11:52:22 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1572259943; bh=4vywB/uAIGnXC6qwB1V/dBPHIhQujNrL9Rbjt/TefV4=; h=From:To:Subject:Date:From; b=fiZaDjrx7TH0tC/WC4ZdHiFHHPjbvbdEi/loid5cbgtX0hOIi2UuS8G26ZHVt+pGa tReEkKUAKGckRRA5hocagPylcRZVzKaWe5gZbofn3B4JzReFPTwXi569AyMiPUoRu0 Oje09FwkOkysj5dUn9ul31waBt2BgPphqH4TNaSQ= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Mon, 28 Oct 2019 12:52:11 +0200 Message-Id: <20191028105211.15292-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.23.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: formats: Write libcamera in lowercase 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: Mon, 28 Oct 2019 10:52:23 -0000 The libcamera name should never be capitalized. Fix the two incorrect occurrences. Signed-off-by: Laurent Pinchart Acked-by: Niklas Söderlund --- src/libcamera/formats.cpp | 2 +- src/libcamera/include/formats.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcamera/formats.cpp b/src/libcamera/formats.cpp index ee4572e01332..6f0ffb6dc5a8 100644 --- a/src/libcamera/formats.cpp +++ b/src/libcamera/formats.cpp @@ -2,7 +2,7 @@ /* * Copyright (C) 2019, Google Inc. * - * formats.cpp - Libcamera image formats + * formats.cpp - libcamera image formats */ #include "formats.h" diff --git a/src/libcamera/include/formats.h b/src/libcamera/include/formats.h index 796d65f1fba3..f43bc8c004f6 100644 --- a/src/libcamera/include/formats.h +++ b/src/libcamera/include/formats.h @@ -2,7 +2,7 @@ /* * Copyright (C) 2019, Google Inc. * - * formats.h - Libcamera image formats + * formats.h - libcamera image formats */ #ifndef __LIBCAMERA_FORMATS_H__