1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Driver for the MaxLinear MxL69x family of tuners/demods
4  *
5  * Copyright (C) 2020 Brad Love <brad@nextdimension.cc>
6  *
7  * based on code:
8  * Copyright (c) 2016 MaxLinear, Inc. All rights reserved
9  * which was released under GPL V2
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * version 2, as published by the Free Software Foundation.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  */
20 
21 #ifndef _MXL692_H_
22 #define _MXL692_H_
23 
24 #include <media/dvb_frontend.h>
25 
26 #define MXL692_FIRMWARE "dvb-demod-mxl692.fw"
27 
28 struct mxl692_config {
29 	unsigned char  id;
30 	u8 i2c_addr;
31 	/*
32 	 * frontend
33 	 * returned by driver
34 	 */
35 	struct dvb_frontend **fe;
36 };
37 
38 #endif /* _MXL692_H_ */
39