xref: /OK3568_Linux_fs/kernel/drivers/media/dvb-frontends/cxd2880/cxd2880_common.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun  * cxd2880_common.h
4*4882a593Smuzhiyun  * Sony CXD2880 DVB-T2/T tuner + demodulator driver common definitions
5*4882a593Smuzhiyun  *
6*4882a593Smuzhiyun  * Copyright (C) 2016, 2017, 2018 Sony Semiconductor Solutions Corporation
7*4882a593Smuzhiyun  */
8*4882a593Smuzhiyun 
9*4882a593Smuzhiyun #ifndef CXD2880_COMMON_H
10*4882a593Smuzhiyun #define CXD2880_COMMON_H
11*4882a593Smuzhiyun 
12*4882a593Smuzhiyun #include <linux/types.h>
13*4882a593Smuzhiyun #include <linux/errno.h>
14*4882a593Smuzhiyun #include <linux/delay.h>
15*4882a593Smuzhiyun #include <linux/string.h>
16*4882a593Smuzhiyun 
17*4882a593Smuzhiyun int cxd2880_convert2s_complement(u32 value, u32 bitlen);
18*4882a593Smuzhiyun 
19*4882a593Smuzhiyun #endif
20