David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* |
3 | * MDIO I2C bridge | ||||
4 | * | ||||
5 | * Copyright (C) 2015 Russell King | ||||
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6 | */ |
7 | #ifndef MDIO_I2C_H | ||||
8 | #define MDIO_I2C_H | ||||
9 | |||||
10 | struct device; | ||||
11 | struct i2c_adapter; | ||||
12 | struct mii_bus; | ||||
13 | |||||
14 | struct mii_bus *mdio_i2c_alloc(struct device *parent, struct i2c_adapter *i2c); | ||||
15 | |||||
16 | #endif |