[libcamera-devel,1/2] libcamera: v4l2_device: Make fd() function const
diff mbox series

Message ID 20210303163715.21730-1-laurent.pinchart@ideasonboard.com
State Accepted
Headers show
Series
  • [libcamera-devel,1/2] libcamera: v4l2_device: Make fd() function const
Related show

Commit Message

Laurent Pinchart March 3, 2021, 4:37 p.m. UTC
There are use cases for getting the file descriptor of a const
V4L2Device instance, for instance to print it in a log. Make the
function const. There's little risk of abuse here (as in code then
performing operations on the file descriptors that conceptually modify
the V4L2 device), as the fd() function is protected.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
 include/libcamera/internal/v4l2_device.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Kieran Bingham March 3, 2021, 4:38 p.m. UTC | #1
On 03/03/2021 16:37, Laurent Pinchart wrote:
> There are use cases for getting the file descriptor of a const
> V4L2Device instance, for instance to print it in a log. Make the
> function const. There's little risk of abuse here (as in code then
> performing operations on the file descriptors that conceptually modify
> the V4L2 device), as the fd() function is protected.
> 
> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---
>  include/libcamera/internal/v4l2_device.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/libcamera/internal/v4l2_device.h b/include/libcamera/internal/v4l2_device.h
> index c56a950ee4f9..d006bf684335 100644
> --- a/include/libcamera/internal/v4l2_device.h
> +++ b/include/libcamera/internal/v4l2_device.h
> @@ -50,7 +50,7 @@ protected:
>  
>  	int ioctl(unsigned long request, void *argp);
>  
> -	int fd() { return fd_; }
> +	int fd() const { return fd_; }

Well that's easy.

Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>

>  
>  private:
>  	void listControls();
>
Paul Elder March 4, 2021, 4:22 a.m. UTC | #2
Hi Laurent,

On Wed, Mar 03, 2021 at 06:37:14PM +0200, Laurent Pinchart wrote:
> There are use cases for getting the file descriptor of a const
> V4L2Device instance, for instance to print it in a log. Make the
> function const. There's little risk of abuse here (as in code then
> performing operations on the file descriptors that conceptually modify
> the V4L2 device), as the fd() function is protected.
> 
> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>

> ---
>  include/libcamera/internal/v4l2_device.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/libcamera/internal/v4l2_device.h b/include/libcamera/internal/v4l2_device.h
> index c56a950ee4f9..d006bf684335 100644
> --- a/include/libcamera/internal/v4l2_device.h
> +++ b/include/libcamera/internal/v4l2_device.h
> @@ -50,7 +50,7 @@ protected:
>  
>  	int ioctl(unsigned long request, void *argp);
>  
> -	int fd() { return fd_; }
> +	int fd() const { return fd_; }
>  
>  private:
>  	void listControls();

Patch
diff mbox series

diff --git a/include/libcamera/internal/v4l2_device.h b/include/libcamera/internal/v4l2_device.h
index c56a950ee4f9..d006bf684335 100644
--- a/include/libcamera/internal/v4l2_device.h
+++ b/include/libcamera/internal/v4l2_device.h
@@ -50,7 +50,7 @@  protected:
 
 	int ioctl(unsigned long request, void *argp);
 
-	int fd() { return fd_; }
+	int fd() const { return fd_; }
 
 private:
 	void listControls();