From patchwork Fri May 22 14:54:50 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 3842 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 181F0603D7 for ; Fri, 22 May 2020 16:55:20 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="RUjK6uHx"; 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 B5D6A528 for ; Fri, 22 May 2020 16:55:19 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1590159319; bh=f+YmrMKowvOk1M8CL2X9bwKcz3Iv3UB4ZvLqdEcBtKc=; h=From:To:Subject:Date:In-Reply-To:References:From; b=RUjK6uHx5mLioDbv/LpbowJXm1p3jvkbnH3tr4Tb1FJxoMaCRIwP4/ekoUtRHN/zf GgavfAcb/nwRkaOCdgI4kLgWM3M9+phAf6Vqm7Gj0yG1RhwRFtlnpVPs/4zBCfCSA3 oXwYRcKMIRBTvSk1mppb7j4NNr63mR0LW7aLZT+M= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Fri, 22 May 2020 17:54:50 +0300 Message-Id: <20200522145459.16836-4-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200522145459.16836-1-laurent.pinchart@ideasonboard.com> References: <20200522145459.16836-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH/RFC 02/11] libcamera: Replace C++ comments with C comments 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, 22 May 2020 14:55:20 -0000 The control_ids.h.in and property_ids.h.in headers use C++-style comments, when the coding style mandates C-style comments. Fix them. While at it, adjust three minor typos in comments. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham Reviewed-by: Niklas Söderlund --- include/libcamera/control_ids.h.in | 4 ++-- include/libcamera/property_ids.h.in | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/libcamera/control_ids.h.in b/include/libcamera/control_ids.h.in index 6ff0e4186983..95a7a7f1e260 100644 --- a/include/libcamera/control_ids.h.in +++ b/include/libcamera/control_ids.h.in @@ -2,7 +2,7 @@ /* * Copyright (C) 2019, Google Inc. * - * control_ids.h : Control ID list + * control_ids.h - Control ID list * * This file is auto-generated. Do not edit. */ @@ -30,4 +30,4 @@ extern const ControlIdMap controls; } /* namespace libcamera */ -#endif // __LIBCAMERA_CONTROL_IDS_H__ +#endif /* __LIBCAMERA_CONTROL_IDS_H__ */ diff --git a/include/libcamera/property_ids.h.in b/include/libcamera/property_ids.h.in index 62799b3e8c54..e4dea335cd3b 100644 --- a/include/libcamera/property_ids.h.in +++ b/include/libcamera/property_ids.h.in @@ -2,7 +2,7 @@ /* * Copyright (C) 2019, Google Inc. * - * property_ids.h : Property ID list + * property_ids.h - Property ID list * * This file is auto-generated. Do not edit. */ @@ -26,8 +26,8 @@ ${controls} extern const ControlIdMap properties; -} /* namespace propertiess */ +} /* namespace properties */ } /* namespace libcamera */ -#endif // __LIBCAMERA_PROPERTY_IDS_H__ +#endif /* __LIBCAMERA_PROPERTY_IDS_H__ */