summaryrefslogtreecommitdiff
path: root/src/libcamera/media_object.cpp
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2019-01-07 15:51:53 +0000
committerKieran Bingham <kieran.bingham@ideasonboard.com>2019-01-08 13:14:29 +0000
commiteda3cfa1e3b8c6ad0558ea03e96fefbfef029c05 (patch)
treee4b7f39be4bd5d1462410bb81896656993b1746c /src/libcamera/media_object.cpp
parent5af15d1931de3f931b37930c5fa254a4ff92a7c5 (diff)
libcamera: media_object: Rename major/minor functions
The system libraries define macro's for major/minor through <sys/types.h> on some versions of GCC/GLibc. To prevent namespace collisions with these macros, rename our major and minor device node accessors. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/libcamera/media_object.cpp')
-rw-r--r--src/libcamera/media_object.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcamera/media_object.cpp b/src/libcamera/media_object.cpp
index 581e1c08..06a8d642 100644
--- a/src/libcamera/media_object.cpp
+++ b/src/libcamera/media_object.cpp
@@ -212,14 +212,14 @@ void MediaPad::addLink(MediaLink *link)
*/
/**
- * \fn MediaEntity::major()
+ * \fn MediaEntity::deviceMajor()
* \brief Retrieve the major number of the interface associated with the entity
* \return The interface major number, or 0 if the entity isn't associated with
* an interface
*/
/**
- * \fn MediaEntity::minor()
+ * \fn MediaEntity::deviceMinor()
* \brief Retrieve the minor number of the interface associated with the entity
* \return The interface minor number, or 0 if the entity isn't associated with
* an interface