Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.14-rc1 11 lines 189 B view raw
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#endif