Linux Audio

Check our new training course

Loading...
v4.17
 
 1/*
 2 * MDIO I2C bridge
 3 *
 4 * Copyright (C) 2015 Russell King
 5 *
 6 * This program is free software; you can redistribute it and/or modify
 7 * it under the terms of the GNU General Public License version 2 as
 8 * published by the Free Software Foundation.
 9 */
10#ifndef MDIO_I2C_H
11#define MDIO_I2C_H
12
13struct device;
14struct i2c_adapter;
15struct mii_bus;
16
17struct mii_bus *mdio_i2c_alloc(struct device *parent, struct i2c_adapter *i2c);
18
19#endif
v5.9
 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