brintos

brintos / linux-shallow public Read only

0
0
Text · 377 B · b8f12c2 Raw
30 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * Elonics E4000 silicon tuner driver4 *5 * Copyright (C) 2012 Antti Palosaari <crope@iki.fi>6 */7 8#ifndef E4000_H9#define E4000_H10 11#include <media/dvb_frontend.h>12 13/*14 * I2C address15 * 0x64, 0x65, 0x66, 0x6716 */17struct e4000_config {18	/*19	 * frontend20	 */21	struct dvb_frontend *fe;22 23	/*24	 * clock25	 */26	u32 clock;27};28 29#endif30