diff options
author | Jean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com> | 2022-03-09 16:22:59 +0100 |
---|---|---|
committer | Jean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com> | 2022-03-11 11:11:36 +0100 |
commit | ed13310b1fe4c531d6a830c69fbbe0b544d805bd (patch) | |
tree | 527504272808624d1ee133ea5be5715d057312cf /include | |
parent | cdad084a913540c15050dd0a5d6b10f612b2730b (diff) |
libcamera: Fix typo in a function name for camera lens class
The CameraLens class implements a function named "setFocusPostion".
There is a typo here, fix it.
Signed-off-by: Jean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libcamera/internal/camera_lens.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libcamera/internal/camera_lens.h b/include/libcamera/internal/camera_lens.h index 6f2ea1bc..ff4d066e 100644 --- a/include/libcamera/internal/camera_lens.h +++ b/include/libcamera/internal/camera_lens.h @@ -24,7 +24,7 @@ public: ~CameraLens(); int init(); - int setFocusPostion(int32_t position); + int setFocusPosition(int32_t position); const std::string &model() const { return model_; } |