timb_radio.h (403B)
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * timb_radio.h Platform struct for the Timberdale radio driver 4 * Copyright (c) 2009 Intel Corporation 5 */ 6 7#ifndef _TIMB_RADIO_ 8#define _TIMB_RADIO_ 1 9 10#include <linux/i2c.h> 11 12struct timb_radio_platform_data { 13 int i2c_adapter; /* I2C adapter where the tuner and dsp are attached */ 14 struct i2c_board_info *tuner; 15 struct i2c_board_info *dsp; 16}; 17 18#endif