treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 176
[linux-block.git] / include / linux / platform_data / media / timb_radio.h
CommitLineData
82c29810 1/* SPDX-License-Identifier: GPL-2.0-only */
d44d1f3b
RR
2/*
3 * timb_radio.h Platform struct for the Timberdale radio driver
4 * Copyright (c) 2009 Intel Corporation
d44d1f3b
RR
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 */
9cd49719
RR
14 struct i2c_board_info *tuner;
15 struct i2c_board_info *dsp;
d44d1f3b
RR
16};
17
18#endif