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 v5.10-rc5 16 lines 282 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * MDIO I2C bridge 4 * 5 * Copyright (C) 2015 Russell King 6 */ 7#ifndef MDIO_I2C_H 8#define MDIO_I2C_H 9 10struct device; 11struct i2c_adapter; 12struct mii_bus; 13 14struct mii_bus *mdio_i2c_alloc(struct device *parent, struct i2c_adapter *i2c); 15 16#endif