libcamera: align the documentation for numeric error codes

Rapid growth of the library have resulted in slightly different wording
to document that a function returns 0 on success or a negative error
code otherwise. Align all different variations.

Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Niklas Söderlund
2019-02-27 17:36:30 +01:00
parent 9aceed70a2
commit acb56ebef8
9 changed files with 31 additions and 33 deletions
+3 -3
View File
@@ -206,7 +206,7 @@ void MediaDevice::close()
* while pads are accessible from the entity they belong to and links from the
* pads they connect.
*
* \return 0 on success, a negative error code otherwise
* \return 0 on success or a negative error code otherwise
*/
int MediaDevice::populate()
{
@@ -405,7 +405,7 @@ MediaLink *MediaDevice::link(const MediaPad *source, const MediaPad *sink)
* Disable all the media device links, clearing the MEDIA_LNK_FL_ENABLED flag
* on links which are not flagged as IMMUTABLE.
*
* \return 0 on success, or a negative error code otherwise
* \return 0 on success or a negative error code otherwise
*/
int MediaDevice::disableLinks()
{
@@ -705,7 +705,7 @@ void MediaDevice::fixupEntityFlags(struct media_v2_entity *entity)
*
* \sa MediaLink::setEnabled(bool enable)
*
* \return 0 on success, or a negative error code otherwise
* \return 0 on success or a negative error code otherwise
*/
int MediaDevice::setupLink(const MediaLink *link, unsigned int flags)
{