brintos

brintos / linux-shallow public Read only

0
0
Text · 556 B · b8b75c8 Raw
36 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * Panasonic MN88473 DVB-T/T2/C demodulator driver4 *5 * Copyright (C) 2014 Antti Palosaari <crope@iki.fi>6 */7 8#ifndef MN88473_H9#define MN88473_H10 11#include <linux/dvb/frontend.h>12 13struct mn88473_config {14	/*15	 * Max num of bytes given I2C adapter could write at once.16	 * Default: unlimited17	 */18	u16 i2c_wr_max;19 20	/*21	 * Xtal frequency Hz.22	 * Default: 2500000023	 */24	u32 xtal;25 26 27	/* Everything after that is returned by the driver. */28 29	/*30	 * DVB frontend.31	 */32	struct dvb_frontend **fe;33};34 35#endif36