Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * timb_radio.h Platform struct for the Timberdale radio driver
0004  * Copyright (c) 2009 Intel Corporation
0005  */
0006 
0007 #ifndef _TIMB_RADIO_
0008 #define _TIMB_RADIO_ 1
0009 
0010 #include <linux/i2c.h>
0011 
0012 struct timb_radio_platform_data {
0013     int i2c_adapter; /* I2C adapter where the tuner and dsp are attached */
0014     struct i2c_board_info *tuner;
0015     struct i2c_board_info *dsp;
0016 };
0017 
0018 #endif