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 <kieran.bingham@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com>
This commit is contained in:
Kieran Bingham 2021-11-23 17:23:07 +00:00
parent c296c91a71
commit f8a797102d
6 changed files with 12 additions and 23 deletions

View file

@ -4,8 +4,8 @@
* *
* agc.h - IPU3 AGC/AEC mean-based control algorithm * agc.h - IPU3 AGC/AEC mean-based control algorithm
*/ */
#ifndef __LIBCAMERA_IPU3_ALGORITHMS_AGC_H__
#define __LIBCAMERA_IPU3_ALGORITHMS_AGC_H__ #pragma once
#include <linux/intel-ipu3.h> #include <linux/intel-ipu3.h>
@ -59,5 +59,3 @@ private:
} /* namespace ipa::ipu3::algorithms */ } /* namespace ipa::ipu3::algorithms */
} /* namespace libcamera */ } /* namespace libcamera */
#endif /* __LIBCAMERA_IPU3_ALGORITHMS_AGC_H__ */

View file

@ -4,8 +4,8 @@
* *
* algorithm.h - IPU3 control algorithm interface * algorithm.h - IPU3 control algorithm interface
*/ */
#ifndef __LIBCAMERA_IPA_IPU3_ALGORITHM_H__
#define __LIBCAMERA_IPA_IPU3_ALGORITHM_H__ #pragma once
#include <libcamera/ipa/ipu3_ipa_interface.h> #include <libcamera/ipa/ipu3_ipa_interface.h>
@ -28,5 +28,3 @@ public:
} /* namespace ipa::ipu3 */ } /* namespace ipa::ipu3 */
} /* namespace libcamera */ } /* namespace libcamera */
#endif /* __LIBCAMERA_IPA_IPU3_ALGORITHM_H__ */

View file

@ -4,8 +4,8 @@
* *
* awb.h - IPU3 AWB control algorithm * awb.h - IPU3 AWB control algorithm
*/ */
#ifndef __LIBCAMERA_IPU3_ALGORITHMS_AWB_H__
#define __LIBCAMERA_IPU3_ALGORITHMS_AWB_H__ #pragma once
#include <vector> #include <vector>
@ -86,4 +86,3 @@ private:
} /* namespace ipa::ipu3::algorithms */ } /* namespace ipa::ipu3::algorithms */
} /* namespace libcamera*/ } /* namespace libcamera*/
#endif /* __LIBCAMERA_IPU3_ALGORITHMS_AWB_H__ */

View file

@ -4,8 +4,8 @@
* *
* black_correction.h - IPU3 Black Level Correction control * 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" #include "algorithm.h"
@ -24,5 +24,3 @@ public:
} /* namespace ipa::ipu3::algorithms */ } /* namespace ipa::ipu3::algorithms */
} /* namespace libcamera */ } /* namespace libcamera */
#endif /* __LIBCAMERA_IPU3_ALGORITHMS_BLC_H__ */

View file

@ -4,8 +4,8 @@
* *
* tone_mapping.h - IPU3 ToneMapping and Gamma control * 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" #include "algorithm.h"
@ -29,5 +29,3 @@ private:
} /* namespace ipa::ipu3::algorithms */ } /* namespace ipa::ipu3::algorithms */
} /* namespace libcamera */ } /* namespace libcamera */
#endif /* __LIBCAMERA_IPU3_ALGORITHMS_TONE_MAPPING_H__ */

View file

@ -5,8 +5,8 @@
* ipa_context.h - IPU3 IPA Context * ipa_context.h - IPU3 IPA Context
* *
*/ */
#ifndef __LIBCAMERA_IPU3_IPA_CONTEXT_H__
#define __LIBCAMERA_IPU3_IPA_CONTEXT_H__ #pragma once
#include <linux/intel-ipu3.h> #include <linux/intel-ipu3.h>
@ -68,5 +68,3 @@ struct IPAContext {
} /* namespace ipa::ipu3 */ } /* namespace ipa::ipu3 */
} /* namespace libcamera*/ } /* namespace libcamera*/
#endif /* __LIBCAMERA_IPU3_IPA_CONTEXT_H__ */