dp83848.c (c7a61319ad35ef74630662010231dbbcc1ade1b0) dp83848.c (529ed12752635ba8a35dc78ec70ed6f42570b4ca)
1/*
2 * Driver for the Texas Instruments DP83848 PHY
3 *
4 * Copyright (C) 2015-2016 Texas Instruments Incorporated - http://www.ti.com/
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License.

--- 74 unchanged lines hidden (view full) ---

83};
84MODULE_DEVICE_TABLE(mdio, dp83848_tbl);
85
86#define DP83848_PHY_DRIVER(_id, _name) \
87 { \
88 .phy_id = _id, \
89 .phy_id_mask = 0xfffffff0, \
90 .name = _name, \
1/*
2 * Driver for the Texas Instruments DP83848 PHY
3 *
4 * Copyright (C) 2015-2016 Texas Instruments Incorporated - http://www.ti.com/
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License.

--- 74 unchanged lines hidden (view full) ---

83};
84MODULE_DEVICE_TABLE(mdio, dp83848_tbl);
85
86#define DP83848_PHY_DRIVER(_id, _name) \
87 { \
88 .phy_id = _id, \
89 .phy_id_mask = 0xfffffff0, \
90 .name = _name, \
91 .features = (PHY_BASIC_FEATURES | \
92 SUPPORTED_Pause | \
93 SUPPORTED_Asym_Pause), \
91 .features = PHY_BASIC_FEATURES, \
94 .flags = PHY_HAS_INTERRUPT, \
95 \
96 .soft_reset = genphy_soft_reset, \
97 .config_init = genphy_config_init, \
98 .suspend = genphy_suspend, \
99 .resume = genphy_resume, \
100 .config_aneg = genphy_config_aneg, \
101 .read_status = genphy_read_status, \

--- 17 unchanged lines hidden ---
92 .flags = PHY_HAS_INTERRUPT, \
93 \
94 .soft_reset = genphy_soft_reset, \
95 .config_init = genphy_config_init, \
96 .suspend = genphy_suspend, \
97 .resume = genphy_resume, \
98 .config_aneg = genphy_config_aneg, \
99 .read_status = genphy_read_status, \

--- 17 unchanged lines hidden ---