summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorHirokazu Honda <hiroh@chromium.org>2020-10-20 18:15:03 +0900
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-10-20 13:15:52 +0300
commite04bd18589fb04e5fc3974e79f8ae33d22a159df (patch)
tree61d9aa58e4d46a5ed0faed600d9d556c1f96f563 /Documentation
parent4ba2a3380964e6e9d7ba352b483751c1c61d4c68 (diff)
libcamera: Omit extra semicolons
The end semicolons with LOG_DEFINE_CATEGORY, LOG_DECLARE_CATEGORY and REGISTER_PIPELINE_HANDLER are unnecessary. Signed-off-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/guides/pipeline-handler.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/guides/pipeline-handler.rst b/Documentation/guides/pipeline-handler.rst
index 71ef2050..d0370f16 100644
--- a/Documentation/guides/pipeline-handler.rst
+++ b/Documentation/guides/pipeline-handler.rst
@@ -258,7 +258,7 @@ methods for the overridden class members.
return false;
}
- REGISTER_PIPELINE_HANDLER(PipelineHandlerVivid);
+ REGISTER_PIPELINE_HANDLER(PipelineHandlerVivid)
} /* namespace libcamera */
@@ -1470,4 +1470,4 @@ application which will render the frames in a window for visual inspection:
.. TODO: Running qcam with the vivid pipeline handler appears to have a bug and
no visual frames are seen. However disabling zero-copy on qcam renders
- them successfully. \ No newline at end of file
+ them successfully.