2019-05-27 06:55:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2011-08-01 03:52:11 +00:00
|
|
|
/*
|
|
|
|
* Allegro A8293 SEC driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Antti Palosaari <crope@iki.fi>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef A8293_H
|
|
|
|
#define A8293_H
|
|
|
|
|
2017-12-28 18:03:51 +00:00
|
|
|
#include <media/dvb_frontend.h>
|
2013-03-21 19:11:54 +00:00
|
|
|
|
2015-04-16 16:28:39 +00:00
|
|
|
/*
|
|
|
|
* I2C address
|
|
|
|
* 0x08, 0x09, 0x0a, 0x0b
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct a8293_platform_data - Platform data for the a8293 driver
|
|
|
|
* @dvb_frontend: DVB frontend.
|
|
|
|
*/
|
|
|
|
struct a8293_platform_data {
|
|
|
|
struct dvb_frontend *dvb_frontend;
|
|
|
|
};
|
|
|
|
|
2011-08-01 03:52:11 +00:00
|
|
|
#endif /* A8293_H */
|