blob: 8c09635ef8a498f3191ddf93b85985beea2215c3 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Antti Palosaari85bc9b52011-08-01 00:52:11 -03002/*
3 * Allegro A8293 SEC driver
4 *
5 * Copyright (C) 2011 Antti Palosaari <crope@iki.fi>
Antti Palosaari85bc9b52011-08-01 00:52:11 -03006 */
7
8#ifndef A8293_H
9#define A8293_H
10
Mauro Carvalho Chehabfada1932017-12-28 13:03:51 -050011#include <media/dvb_frontend.h>
Mauro Carvalho Chehab782d8b72013-03-21 16:11:54 -030012
Antti Palosaarib561bae2015-04-16 13:28:39 -030013/*
14 * I2C address
15 * 0x08, 0x09, 0x0a, 0x0b
16 */
17
18/**
19 * struct a8293_platform_data - Platform data for the a8293 driver
20 * @dvb_frontend: DVB frontend.
21 */
22struct a8293_platform_data {
23 struct dvb_frontend *dvb_frontend;
24};
25
Antti Palosaari85bc9b52011-08-01 00:52:11 -030026#endif /* A8293_H */