xref: /linux/drivers/net/phy/air_phy_lib.h (revision dddfadd75197e018c4ef30ebb2488aefc75e02d0)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2026 Airoha Technology Corp.
4  * Copyright (C) 2026 Collabora Ltd.
5  *                    Louis-Alexis Eyraud <louisalexis.eyraud@collabora.com>
6  */
7 
8 #ifndef __AIR_PHY_LIB_H
9 #define __AIR_PHY_LIB_H
10 
11 #include <linux/phy.h>
12 
13 int air_phy_read_page(struct phy_device *phydev);
14 int air_phy_write_page(struct phy_device *phydev, int page);
15 
16 #endif /* __AIR_PHY_LIB_H */
17