/*1* timb_video.h Platform struct for the Timberdale video driver2* Copyright (c) 2009-2010 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_VIDEO_19#define _TIMB_VIDEO_ 12021#include <linux/i2c.h>2223struct timb_video_platform_data {24int dma_channel;25int i2c_adapter; /* The I2C adapter where the encoder is attached */26struct {27const char *module_name;28struct i2c_board_info *info;29} encoder;30};3132#endif333435