blob: a42e1fc079cb0ad151a36851ee2a09265a54bc17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* phylib header
*/
#ifndef __PHYLIB_H
#define __PHYLIB_H
struct device_node;
struct phy_device;
struct device_node *phy_package_get_node(struct phy_device *phydev);
void *phy_package_get_priv(struct phy_device *phydev);
#endif /* __PHYLIB_H */
|