xref: /linux/drivers/gpu/drm/ast/ast_ddc.h (revision 0872fee2e1c8a0503006b5dab0ec32901b0bf247)
1 /* SPDX-License-Identifier: MIT */
2 
3 #ifndef __AST_DDC_H__
4 #define __AST_DDC_H__
5 
6 #include <linux/i2c.h>
7 #include <linux/i2c-algo-bit.h>
8 
9 struct ast_device;
10 struct drm_device;
11 
12 struct ast_ddc {
13 	struct i2c_adapter adapter;
14 	struct drm_device *dev;
15 	struct i2c_algo_bit_data bit;
16 };
17 
18 struct ast_ddc *ast_ddc_create(struct ast_device *ast);
19 
20 #endif
21