Merge branch 'work.regset' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[linux/fpc-iii.git] / drivers / media / tuners / fc2580.h
blob1df62aea37f2227cbcf247286aa3e435660139b0
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3 * FCI FC2580 silicon tuner driver
5 * Copyright (C) 2012 Antti Palosaari <crope@iki.fi>
6 */
8 #ifndef FC2580_H
9 #define FC2580_H
11 #include <media/dvb_frontend.h>
12 #include <media/v4l2-subdev.h>
13 #include <linux/i2c.h>
16 * I2C address
17 * 0x56, ...
20 /**
21 * struct fc2580_platform_data - Platform data for the fc2580 driver
22 * @clk: Clock frequency (0 = internal clock).
23 * @dvb_frontend: DVB frontend.
24 * @get_v4l2_subdev: Get V4L2 subdev.
26 struct fc2580_platform_data {
27 u32 clk;
28 struct dvb_frontend *dvb_frontend;
30 struct v4l2_subdev* (*get_v4l2_subdev)(struct i2c_client *);
33 #endif