mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
e63e436326
This adds template code for the LP-PHY. No actual functionality is implemented. Signed-off-by: Michael Buesch <mb@bu3sch.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
15 lines
250 B
C
15 lines
250 B
C
#ifndef LINUX_B43_PHY_LP_H_
|
|
#define LINUX_B43_PHY_LP_H_
|
|
|
|
/* Definitions for the LP-PHY */
|
|
|
|
struct b43_phy_lp {
|
|
bool initialised;
|
|
};
|
|
|
|
|
|
struct b43_phy_operations;
|
|
extern const struct b43_phy_operations b43_phyops_lp;
|
|
|
|
#endif /* LINUX_B43_PHY_LP_H_ */
|