#include <linux/mod_devicetable.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/phy/phy.h>
#include <linux/reset.h>
struct ath79_usb_phy { … };
static int ath79_usb_phy_power_on(struct phy *phy)
{ … }
static int ath79_usb_phy_power_off(struct phy *phy)
{ … }
static const struct phy_ops ath79_usb_phy_ops = …;
static int ath79_usb_phy_probe(struct platform_device *pdev)
{ … }
static const struct of_device_id ath79_usb_phy_of_match[] = …;
MODULE_DEVICE_TABLE(of, ath79_usb_phy_of_match);
static struct platform_driver ath79_usb_phy_driver = …;
module_platform_driver(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_AUTHOR(…) …;
MODULE_LICENSE(…) …;