cortina.c (c13aca79ff3c4af5fd31a5b2743a90eba6e36a26) | cortina.c (40f89ebfbd73fc9439ae8d4950f60226ad176690) |
---|---|
1/* 2 * Copyright 2017 NXP 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License as published by 6 * the Free Software Foundation; either version 2 of the License, or 7 * (at your option) any later version. 8 * --- 74 unchanged lines hidden (view full) --- 83 return 0; 84} 85 86static struct phy_driver cortina_driver[] = { 87{ 88 .phy_id = PHY_ID_CS4340, 89 .phy_id_mask = 0xffffffff, 90 .name = "Cortina CS4340", | 1/* 2 * Copyright 2017 NXP 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License as published by 6 * the Free Software Foundation; either version 2 of the License, or 7 * (at your option) any later version. 8 * --- 74 unchanged lines hidden (view full) --- 83 return 0; 84} 85 86static struct phy_driver cortina_driver[] = { 87{ 88 .phy_id = PHY_ID_CS4340, 89 .phy_id_mask = 0xffffffff, 90 .name = "Cortina CS4340", |
91 .features = PHY_10GBIT_FEATURES, |
|
91 .config_init = gen10g_config_init, 92 .config_aneg = gen10g_config_aneg, 93 .read_status = cortina_read_status, 94 .soft_reset = gen10g_no_soft_reset, 95 .probe = cortina_probe, 96}, 97}; 98 --- 12 unchanged lines hidden --- | 92 .config_init = gen10g_config_init, 93 .config_aneg = gen10g_config_aneg, 94 .read_status = cortina_read_status, 95 .soft_reset = gen10g_no_soft_reset, 96 .probe = cortina_probe, 97}, 98}; 99 --- 12 unchanged lines hidden --- |