diff options
author | Hirokazu Honda <hiroh@chromium.org> | 2020-10-20 18:15:04 +0900 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-10-20 13:15:55 +0300 |
commit | 766eae45321cecc0ac39dd3219826b111290575b (patch) | |
tree | 48d58f3e968898ea31de8af9854cb0cc248fd201 /src/ipa | |
parent | e04bd18589fb04e5fc3974e79f8ae33d22a159df (diff) |
ipa: Omit extra semicolon
There is the unnecessary semicolon after ipaCreate() in
raspberrypi.cpp. This removes it.
Signed-off-by: Hirokazu Honda <hiroh@chromium.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/ipa')
-rw-r--r-- | src/ipa/raspberrypi/raspberrypi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipa/raspberrypi/raspberrypi.cpp b/src/ipa/raspberrypi/raspberrypi.cpp index 48a72dd2..1c255aa2 100644 --- a/src/ipa/raspberrypi/raspberrypi.cpp +++ b/src/ipa/raspberrypi/raspberrypi.cpp @@ -1150,6 +1150,6 @@ struct ipa_context *ipaCreate() return new IPAInterfaceWrapper(std::make_unique<IPARPi>()); } -}; /* extern "C" */ +} /* extern "C" */ } /* namespace libcamera */ |