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