/*1* include/media/radio-si4713.h2*3* Board related data definitions for Si4713 radio transmitter chip.4*5* Copyright (c) 2009 Nokia Corporation6* Contact: Eduardo Valentin <[email protected]>7*8* This file is licensed under the terms of the GNU General Public License9* version 2. This program is licensed "as is" without any warranty of any10* kind, whether express or implied.11*12*/1314#ifndef RADIO_SI4713_H15#define RADIO_SI4713_H1617#include <linux/i2c.h>1819#define SI4713_NAME "radio-si4713"2021/*22* Platform dependent definition23*/24struct radio_si4713_platform_data {25int i2c_bus;26struct i2c_board_info *subdev_board_info;27};2829#endif /* ifndef RADIO_SI4713_H*/303132