Files
Linux_Drivers/linux_5.10/drivers/media/tuners/e4000.h
sam.xiang 5c7dd7acc3 [linux] create linux_5.10.4 from T-head official:
repo: https://github.com/T-head-Semi/linux
	commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb

Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
2023-03-10 20:32:41 +08:00

30 lines
377 B
C

/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Elonics E4000 silicon tuner driver
*
* Copyright (C) 2012 Antti Palosaari <crope@iki.fi>
*/
#ifndef E4000_H
#define E4000_H
#include <media/dvb_frontend.h>
/*
* I2C address
* 0x64, 0x65, 0x66, 0x67
*/
struct e4000_config {
/*
* frontend
*/
struct dvb_frontend *fe;
/*
* clock
*/
u32 clock;
};
#endif