diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2021-11-23 17:23:07 +0000 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2021-11-24 12:18:41 +0000 |
commit | f8a797102d06805db434a7bb0bf8c501b1def04d (patch) | |
tree | 1c12c9a89c5e118a61a94d02bfdd9b13affeb8a1 /src/ipa/ipu3/ipa_context.h | |
parent | c296c91a71bcaeddd042f2d0535d56efc6c371a3 (diff) |
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>
Diffstat (limited to 'src/ipa/ipu3/ipa_context.h')
-rw-r--r-- | src/ipa/ipu3/ipa_context.h | 6 |
1 files changed, 2 insertions, 4 deletions
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 <linux/intel-ipu3.h> @@ -68,5 +68,3 @@ struct IPAContext { } /* namespace ipa::ipu3 */ } /* namespace libcamera*/ - -#endif /* __LIBCAMERA_IPU3_IPA_CONTEXT_H__ */ |