Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * timb_video.h Platform struct for the Timberdale video driver
0004  * Copyright (c) 2009-2010 Intel Corporation
0005  */
0006 
0007 #ifndef _TIMB_VIDEO_
0008 #define _TIMB_VIDEO_ 1
0009 
0010 #include <linux/i2c.h>
0011 
0012 struct timb_video_platform_data {
0013     int dma_channel;
0014     int i2c_adapter; /* The I2C adapter where the encoder is attached */
0015     struct {
0016         const char *module_name;
0017         struct i2c_board_info *info;
0018     } encoder;
0019 };
0020 
0021 #endif