mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 19:26:54 +07:00
17 lines
447 B
C
17 lines
447 B
C
|
/* SPDX-License-Identifier: GPL-2.0
|
||
|
* HWMON driver for Aquantia PHY
|
||
|
*
|
||
|
* Author: Nikita Yushchenko <nikita.yoush@cogentembedded.com>
|
||
|
* Author: Andrew Lunn <andrew@lunn.ch>
|
||
|
* Author: Heiner Kallweit <hkallweit1@gmail.com>
|
||
|
*/
|
||
|
|
||
|
#include <linux/device.h>
|
||
|
#include <linux/phy.h>
|
||
|
|
||
|
#if IS_REACHABLE(CONFIG_HWMON)
|
||
|
int aqr_hwmon_probe(struct phy_device *phydev);
|
||
|
#else
|
||
|
static inline int aqr_hwmon_probe(struct phy_device *phydev) { return 0; }
|
||
|
#endif
|