/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Allegro A8293 SEC driver * * Copyright (C) 2011 Antti Palosaari */ #ifndef A8293_H #define A8293_H #include /* * 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 */