Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * MDIO I2C bridge
0004  *
0005  * Copyright (C) 2015 Russell King
0006  */
0007 #ifndef MDIO_I2C_H
0008 #define MDIO_I2C_H
0009 
0010 struct device;
0011 struct i2c_adapter;
0012 struct mii_bus;
0013 
0014 struct mii_bus *mdio_i2c_alloc(struct device *parent, struct i2c_adapter *i2c);
0015 
0016 #endif