![]() |
|
|||
0001 /* SPDX-License-Identifier: GPL-2.0-or-later */ 0002 /* 0003 * FCI FC2580 silicon tuner driver 0004 * 0005 * Copyright (C) 2012 Antti Palosaari <crope@iki.fi> 0006 */ 0007 0008 #ifndef FC2580_H 0009 #define FC2580_H 0010 0011 #include <media/dvb_frontend.h> 0012 #include <media/v4l2-subdev.h> 0013 #include <linux/i2c.h> 0014 0015 /* 0016 * I2C address 0017 * 0x56, ... 0018 */ 0019 0020 /** 0021 * struct fc2580_platform_data - Platform data for the fc2580 driver 0022 * @clk: Clock frequency (0 = internal clock). 0023 * @dvb_frontend: DVB frontend. 0024 * @get_v4l2_subdev: Get V4L2 subdev. 0025 */ 0026 struct fc2580_platform_data { 0027 u32 clk; 0028 struct dvb_frontend *dvb_frontend; 0029 0030 struct v4l2_subdev* (*get_v4l2_subdev)(struct i2c_client *); 0031 }; 0032 0033 #endif
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |