mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00

Add getters for public members, this prepares for making struct phy_package_shared private to phylib. Declare the getters in a new header file phylib.h, which will be used by PHY drivers only. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Link: https://patch.msgid.link/c6da0b27-4479-4717-9e16-643821b76bd8@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
16 lines
301 B
C
16 lines
301 B
C
/* 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 */
|