/*1* timb_radio.h Platform struct for the Timberdale radio driver2* Copyright (c) 2009 Intel Corporation3*4* This program is free software; you can redistribute it and/or modify5* it under the terms of the GNU General Public License version 2 as6* published by the Free Software Foundation.7*8* This program is distributed in the hope that it will be useful,9* but WITHOUT ANY WARRANTY; without even the implied warranty of10* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11* GNU General Public License for more details.12*13* You should have received a copy of the GNU General Public License14* along with this program; if not, write to the Free Software15* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.16*/1718#ifndef _TIMB_RADIO_19#define _TIMB_RADIO_ 12021#include <linux/i2c.h>2223struct timb_radio_platform_data {24int i2c_adapter; /* I2C adapter where the tuner and dsp are attached */25struct {26struct i2c_board_info *info;27} tuner;28struct {29const char *module_name;30struct i2c_board_info *info;31} dsp;32};3334#endif353637