1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Support for Intel Camera Imaging ISP subsystem.
4  * Copyright (c) 2015, Intel Corporation.
5  */
6 
7 #include "ia_css_types.h"
8 #include "sh_css_defs.h"
9 #ifndef IA_CSS_NO_DEBUG
10 #include "ia_css_debug.h"
11 #endif
12 
13 #include "ia_css_aa2.host.h"
14 
15 /* YUV Anti-Aliasing configuration. */
16 const struct ia_css_aa_config default_aa_config = {
17 	8191 /* default should be 0 */
18 };
19 
20 /* Bayer Anti-Aliasing configuration. */
21 const struct ia_css_aa_config default_baa_config = {
22 	8191 /* default should be 0 */
23 };
24