summaryrefslogtreecommitdiff
path: root/src/ipa/raspberrypi/controller/black_level_status.h
diff options
context:
space:
mode:
authorNaushir Patuck <naush@raspberrypi.com>2022-07-27 09:55:19 +0100
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2022-07-27 18:12:14 +0300
commitde9e95bfcc5149bc136895ec77537a8a73751621 (patch)
tree99784e84b70f4f214aa3d512a8417eb40342dfc3 /src/ipa/raspberrypi/controller/black_level_status.h
parentacd5d9979fca93bf7a0ffa6f5d08f5cf43ba0cee (diff)
ipa: raspberrypi: Remove extern "C" declarations
Since the controller header files are now C++ specific, remove the extern "C" declarations. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'src/ipa/raspberrypi/controller/black_level_status.h')
-rw-r--r--src/ipa/raspberrypi/controller/black_level_status.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/ipa/raspberrypi/controller/black_level_status.h b/src/ipa/raspberrypi/controller/black_level_status.h
index 8b052383..8d2c497a 100644
--- a/src/ipa/raspberrypi/controller/black_level_status.h
+++ b/src/ipa/raspberrypi/controller/black_level_status.h
@@ -8,16 +8,8 @@
/* The "black level" algorithm stores the black levels to use. */
-#ifdef __cplusplus
-extern "C" {
-#endif
-
struct BlackLevelStatus {
uint16_t blackLevelR; /* out of 16 bits */
uint16_t blackLevelG;
uint16_t blackLevelB;
};
-
-#ifdef __cplusplus
-}
-#endif