From f8a797102d06805db434a7bb0bf8c501b1def04d Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Tue, 23 Nov 2021 17:23:07 +0000 Subject: ipa: ipu3: Convert to pragma once Remove the verbose #ifndef/#define/#endif pattern for maintaining header idempotency, and replace it with a simple #pragma once. This simplifies the headers, and prevents redundant changes when header files get moved. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart Reviewed-by: Jean-Michel Hautbois --- src/ipa/ipu3/algorithms/agc.h | 6 ++---- src/ipa/ipu3/algorithms/algorithm.h | 6 ++---- src/ipa/ipu3/algorithms/awb.h | 5 ++--- src/ipa/ipu3/algorithms/blc.h | 6 ++---- src/ipa/ipu3/algorithms/tone_mapping.h | 6 ++---- src/ipa/ipu3/ipa_context.h | 6 ++---- 6 files changed, 12 insertions(+), 23 deletions(-) (limited to 'src/ipa') diff --git a/src/ipa/ipu3/algorithms/agc.h b/src/ipa/ipu3/algorithms/agc.h index a04a81fb..96ec7005 100644 --- a/src/ipa/ipu3/algorithms/agc.h +++ b/src/ipa/ipu3/algorithms/agc.h @@ -4,8 +4,8 @@ * * agc.h - IPU3 AGC/AEC mean-based control algorithm */ -#ifndef __LIBCAMERA_IPU3_ALGORITHMS_AGC_H__ -#define __LIBCAMERA_IPU3_ALGORITHMS_AGC_H__ + +#pragma once #include @@ -59,5 +59,3 @@ private: } /* namespace ipa::ipu3::algorithms */ } /* namespace libcamera */ - -#endif /* __LIBCAMERA_IPU3_ALGORITHMS_AGC_H__ */ diff --git a/src/ipa/ipu3/algorithms/algorithm.h b/src/ipa/ipu3/algorithms/algorithm.h index 43f5d8b0..16310ab1 100644 --- a/src/ipa/ipu3/algorithms/algorithm.h +++ b/src/ipa/ipu3/algorithms/algorithm.h @@ -4,8 +4,8 @@ * * algorithm.h - IPU3 control algorithm interface */ -#ifndef __LIBCAMERA_IPA_IPU3_ALGORITHM_H__ -#define __LIBCAMERA_IPA_IPU3_ALGORITHM_H__ + +#pragma once #include @@ -28,5 +28,3 @@ public: } /* namespace ipa::ipu3 */ } /* namespace libcamera */ - -#endif /* __LIBCAMERA_IPA_IPU3_ALGORITHM_H__ */ diff --git a/src/ipa/ipu3/algorithms/awb.h b/src/ipa/ipu3/algorithms/awb.h index b90782c1..ab4b0a33 100644 --- a/src/ipa/ipu3/algorithms/awb.h +++ b/src/ipa/ipu3/algorithms/awb.h @@ -4,8 +4,8 @@ * * awb.h - IPU3 AWB control algorithm */ -#ifndef __LIBCAMERA_IPU3_ALGORITHMS_AWB_H__ -#define __LIBCAMERA_IPU3_ALGORITHMS_AWB_H__ + +#pragma once #include @@ -86,4 +86,3 @@ private: } /* namespace ipa::ipu3::algorithms */ } /* namespace libcamera*/ -#endif /* __LIBCAMERA_IPU3_ALGORITHMS_AWB_H__ */ diff --git a/src/ipa/ipu3/algorithms/blc.h b/src/ipa/ipu3/algorithms/blc.h index 4b7cb483..d8da1748 100644 --- a/src/ipa/ipu3/algorithms/blc.h +++ b/src/ipa/ipu3/algorithms/blc.h @@ -4,8 +4,8 @@ * * black_correction.h - IPU3 Black Level Correction control */ -#ifndef __LIBCAMERA_IPU3_ALGORITHMS_BLC_H__ -#define __LIBCAMERA_IPU3_ALGORITHMS_BLC_H__ + +#pragma once #include "algorithm.h" @@ -24,5 +24,3 @@ public: } /* namespace ipa::ipu3::algorithms */ } /* namespace libcamera */ - -#endif /* __LIBCAMERA_IPU3_ALGORITHMS_BLC_H__ */ diff --git a/src/ipa/ipu3/algorithms/tone_mapping.h b/src/ipa/ipu3/algorithms/tone_mapping.h index 46dd6171..b727ab1e 100644 --- a/src/ipa/ipu3/algorithms/tone_mapping.h +++ b/src/ipa/ipu3/algorithms/tone_mapping.h @@ -4,8 +4,8 @@ * * tone_mapping.h - IPU3 ToneMapping and Gamma control */ -#ifndef __LIBCAMERA_IPU3_ALGORITHMS_TONE_MAPPING_H__ -#define __LIBCAMERA_IPU3_ALGORITHMS_TONE_MAPPING_H__ + +#pragma once #include "algorithm.h" @@ -29,5 +29,3 @@ private: } /* namespace ipa::ipu3::algorithms */ } /* namespace libcamera */ - -#endif /* __LIBCAMERA_IPU3_ALGORITHMS_TONE_MAPPING_H__ */ diff --git a/src/ipa/ipu3/ipa_context.h b/src/ipa/ipu3/ipa_context.h index fd97e240..c6dc0814 100644 --- a/src/ipa/ipu3/ipa_context.h +++ b/src/ipa/ipu3/ipa_context.h @@ -5,8 +5,8 @@ * ipa_context.h - IPU3 IPA Context * */ -#ifndef __LIBCAMERA_IPU3_IPA_CONTEXT_H__ -#define __LIBCAMERA_IPU3_IPA_CONTEXT_H__ + +#pragma once #include @@ -68,5 +68,3 @@ struct IPAContext { } /* namespace ipa::ipu3 */ } /* namespace libcamera*/ - -#endif /* __LIBCAMERA_IPU3_IPA_CONTEXT_H__ */ -- cgit v1.2.1