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 #ifndef __IA_CSS_WB_PARAM_H
8 #define __IA_CSS_WB_PARAM_H
9 
10 #include "type_support.h"
11 
12 /* WB (White Balance) */
13 struct sh_css_isp_wb_params {
14 	s32 gain_shift;
15 	s32 gain_gr;
16 	s32 gain_r;
17 	s32 gain_b;
18 	s32 gain_gb;
19 };
20 
21 #endif /* __IA_CSS_WB_PARAM_H */
22