accel/qaic: Add AIC200 support
[drm/drm-misc.git] / include / linux / platform_data / media / timb_video.h
blob38764cc09b4f1fdfd6ebac46bd41b4d9bfcafcb9
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * timb_video.h Platform struct for the Timberdale video driver
4 * Copyright (c) 2009-2010 Intel Corporation
5 */
7 #ifndef _TIMB_VIDEO_
8 #define _TIMB_VIDEO_ 1
10 #include <linux/i2c.h>
12 struct timb_video_platform_data {
13 int dma_channel;
14 int i2c_adapter; /* The I2C adapter where the encoder is attached */
15 struct {
16 const char *module_name;
17 struct i2c_board_info *info;
18 } encoder;
21 #endif