brintos

brintos / linux-shallow public Read only

0
0
Text · 555 B · 77764a0 Raw
30 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * Driver for the MaxLinear MxL69x family of tuners/demods4 *5 * Copyright (C) 2020 Brad Love <brad@nextdimension.cc>6 *7 * based on code:8 * Copyright (c) 2016 MaxLinear, Inc. All rights reserved9 * which was released under GPL V210 */11 12#ifndef _MXL692_H_13#define _MXL692_H_14 15#include <media/dvb_frontend.h>16 17#define MXL692_FIRMWARE "dvb-demod-mxl692.fw"18 19struct mxl692_config {20	unsigned char  id;21	u8 i2c_addr;22	/*23	 * frontend24	 * returned by driver25	 */26	struct dvb_frontend **fe;27};28 29#endif /* _MXL692_H_ */30