#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/unistd.h>
#include <linux/interrupt.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
#include <linux/spinlock.h>
#include <linux/mm.h>
#include <linux/module.h>
#include <linux/mii.h>
#include <linux/ethtool.h>
#include <linux/phy.h>
#include <asm/io.h>
#include <asm/irq.h>
#include <linux/uaccess.h>
#define MII_LXT970_IER …
#define MII_LXT970_IER_IEN …
#define MII_LXT970_ISR …
#define MII_LXT970_IRS_MINT …
#define MII_LXT970_CONFIG …
#define MII_LXT971_IER …
#define MII_LXT971_IER_IEN …
#define MII_LXT971_ISR …
#define MII_LXT971_ISR_MASK …
#define MII_LXT973_PCR …
#define PCR_FIBER_SELECT …
MODULE_DESCRIPTION(…) …;
MODULE_AUTHOR(…) …;
MODULE_LICENSE(…) …;
static int lxt970_ack_interrupt(struct phy_device *phydev)
{ … }
static int lxt970_config_intr(struct phy_device *phydev)
{ … }
static irqreturn_t lxt970_handle_interrupt(struct phy_device *phydev)
{ … }
static int lxt970_config_init(struct phy_device *phydev)
{ … }
static int lxt971_ack_interrupt(struct phy_device *phydev)
{ … }
static int lxt971_config_intr(struct phy_device *phydev)
{ … }
static irqreturn_t lxt971_handle_interrupt(struct phy_device *phydev)
{ … }
static int lxt973a2_update_link(struct phy_device *phydev)
{ … }
static int lxt973a2_read_status(struct phy_device *phydev)
{ … }
static int lxt973_probe(struct phy_device *phydev)
{ … }
static int lxt973_config_aneg(struct phy_device *phydev)
{ … }
static struct phy_driver lxt97x_driver[] = …;
module_phy_driver(lxt97x_driver);
static struct mdio_device_id __maybe_unused lxt_tbl[] = …;
MODULE_DEVICE_TABLE(mdio, lxt_tbl);