1/* SPDX-License-Identifier: MIT */2 3#ifndef __AST_DDC_H__4#define __AST_DDC_H__5 6struct ast_device;7struct i2c_adapter;8 9struct i2c_adapter *ast_ddc_create(struct ast_device *ast);10 11#endif12