/* SPDX-License-Identifier: MIT */ #ifndef __AST_DDC_H__ #define __AST_DDC_H__ #include #include struct ast_device; struct ast_ddc { struct ast_device *ast; struct i2c_adapter adapter; struct i2c_algo_bit_data bit; }; struct ast_ddc *ast_ddc_create(struct ast_device *ast); #endif