From patchwork Fri Mar 1 15:41:03 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 700 Return-Path: Received: from relay6-d.mail.gandi.net (relay6-d.mail.gandi.net [217.70.183.198]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id BF680610C3 for ; Fri, 1 Mar 2019 16:40:45 +0100 (CET) X-Originating-IP: 2.224.242.101 Received: from uno.lan (2-224-242-101.ip172.fastwebnet.it [2.224.242.101]) (Authenticated sender: jacopo@jmondi.org) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id 4EEF8C0010; Fri, 1 Mar 2019 15:40:45 +0000 (UTC) From: Jacopo Mondi To: libcamera-devel@lists.libcamera.org Date: Fri, 1 Mar 2019 16:41:03 +0100 Message-Id: <20190301154103.19588-6-jacopo@jmondi.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190301154103.19588-1-jacopo@jmondi.org> References: <20190301154103.19588-1-jacopo@jmondi.org> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v7 5/5] libcamera: v4l2_device: Cosmetic update X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Mar 2019 15:40:46 -0000 Cosmetic update of V4L2Device class: remove the return type from Doxygen documentation of inline functions. Cosmetic update, no functional changes intended. Signed-off-by: Jacopo Mondi --- src/libcamera/v4l2_device.cpp | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/libcamera/v4l2_device.cpp b/src/libcamera/v4l2_device.cpp index b19cf9f78029..ec4ab1587c60 100644 --- a/src/libcamera/v4l2_device.cpp +++ b/src/libcamera/v4l2_device.cpp @@ -37,56 +37,56 @@ LOG_DEFINE_CATEGORY(V4L2) */ /** - * \fn const char *V4L2Capability::driver() + * \fn V4L2Capability::driver() * \brief Retrieve the driver module name * \return The string containing the name of the driver module */ /** - * \fn const char *V4L2Capability::card() + * \fn V4L2Capability::card() * \brief Retrieve the device card name * \return The string containing the device name */ /** - * \fn const char *V4L2Capability::bus_info() + * \fn V4L2Capability::bus_info() * \brief Retrieve the location of the device in the system * \return The string containing the device location */ /** - * \fn unsigned int V4L2Capability::device_caps() + * \fn V4L2Capability::device_caps() * \brief Retrieve the capabilities of the device * \return The device specific capabilities if V4L2_CAP_DEVICE_CAPS is set or * driver capabilities otherwise */ /** - * \fn bool V4L2Capability::isMultiplanar() + * \fn V4L2Capability::isMultiplanar() * \brief Identify if the device implements the V4L2 multiplanar APIs * \return True if the device supports multiplanar APIs */ /** - * \fn bool V4L2Capability::isCapture() + * \fn V4L2Capability::isCapture() * \brief Identify if the device captures data * \return True if the device can capture data */ /** - * \fn bool V4L2Capability::isOutput() + * \fn V4L2Capability::isOutput() * \brief Identify if the device outputs data * \return True if the device can output data */ /** - * \fn bool V4L2Capability::isVideo() + * \fn V4L2Capability::isVideo() * \brief Identify if the device captures or outputs images * \return True if the device can capture or output images */ /** - * \fn bool V4L2Capability::isMeta() + * \fn V4L2Capability::isMeta() * \brief Identify if the device captures or outputs image meta-data * * \todo Add support for META_CAPTURE introduced in Linux v5.0 @@ -95,25 +95,25 @@ LOG_DEFINE_CATEGORY(V4L2) */ /** - * \fn bool V4L2Capability::isVideoCapture() + * \fn V4L2Capability::isVideoCapture() * \brief Identify if the device captures images * \return True if the device can capture images */ /** - * \fn bool V4L2Capability::isVideoOutput() + * \fn V4L2Capability::isVideoOutput() * \brief Identify if the device outputs images * \return True if the device can output images */ /** - * \fn bool V4L2Capability::isMetaCapture() + * \fn V4L2Capability::isMetaCapture() * \brief Identify if the device captures image meta-data * \return True if the device can capture image meta-data */ /** - * \fn bool V4L2Capability::hasStreaming() + * \fn V4L2Capability::hasStreaming() * \brief Determine if the device can perform Streaming I/O * \return True if the device provides Streaming I/O IOCTLs */ @@ -371,19 +371,19 @@ void V4L2Device::close() } /** - * \fn const char *V4L2Device::driverName() + * \fn V4L2Device::driverName() * \brief Retrieve the name of the V4L2 device driver * \return The string containing the driver name */ /** - * \fn const char *V4L2Device::deviceName() + * \fn V4L2Device::deviceName() * \brief Retrieve the name of the V4L2 device * \return The string containing the device name */ /** - * \fn const char *V4L2Device::busName() + * \fn V4L2Device::busName() * \brief Retrieve the location of the device in the system * \return The string containing the device location */