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 8 #include "ia_css_types.h" 9 #include "sh_css_internal.h" 10 #include "sh_css_frac.h" 11 12 #include "ia_css_raa.host.h" 13 14 void ia_css_raa_encode(struct sh_css_isp_aa_params * to,const struct ia_css_aa_config * from,unsigned int size)15ia_css_raa_encode( 16 struct sh_css_isp_aa_params *to, 17 const struct ia_css_aa_config *from, 18 unsigned int size) 19 { 20 (void)size; 21 (void)to; 22 (void)from; 23 } 24 25