/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Allegro A8293 SEC driver * * Copyright (C) 2011 Antti Palosaari <crope@iki.fi> */ #ifndef A8293_H #define A8293_H #include <media/dvb_frontend.h> /* * 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; }; #endif /* A8293_H */ |