| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0+ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * drivers/net/phy/ste10Xp.c |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 6 | 7 | * Author: Giuseppe Cavallaro <peppe.cavallaro@st.com> |
|---|
| 7 | 8 | * |
|---|
| 8 | 9 | * Copyright (c) 2008 STMicroelectronics Limited |
|---|
| 9 | | - * |
|---|
| 10 | | - * This program is free software; you can redistribute it and/or modify it |
|---|
| 11 | | - * under the terms of the GNU General Public License as published by the |
|---|
| 12 | | - * Free Software Foundation; either version 2 of the License, or (at your |
|---|
| 13 | | - * option) any later version. |
|---|
| 14 | | - * |
|---|
| 15 | 10 | */ |
|---|
| 16 | 11 | |
|---|
| 17 | 12 | #include <linux/module.h> |
|---|
| .. | .. |
|---|
| 86 | 81 | .phy_id = STE101P_PHY_ID, |
|---|
| 87 | 82 | .phy_id_mask = 0xfffffff0, |
|---|
| 88 | 83 | .name = "STe101p", |
|---|
| 89 | | - .features = PHY_BASIC_FEATURES | SUPPORTED_Pause, |
|---|
| 90 | | - .flags = PHY_HAS_INTERRUPT, |
|---|
| 84 | + /* PHY_BASIC_FEATURES */ |
|---|
| 91 | 85 | .config_init = ste10Xp_config_init, |
|---|
| 92 | 86 | .ack_interrupt = ste10Xp_ack_interrupt, |
|---|
| 93 | 87 | .config_intr = ste10Xp_config_intr, |
|---|
| .. | .. |
|---|
| 97 | 91 | .phy_id = STE100P_PHY_ID, |
|---|
| 98 | 92 | .phy_id_mask = 0xffffffff, |
|---|
| 99 | 93 | .name = "STe100p", |
|---|
| 100 | | - .features = PHY_BASIC_FEATURES | SUPPORTED_Pause, |
|---|
| 101 | | - .flags = PHY_HAS_INTERRUPT, |
|---|
| 94 | + /* PHY_BASIC_FEATURES */ |
|---|
| 102 | 95 | .config_init = ste10Xp_config_init, |
|---|
| 103 | 96 | .ack_interrupt = ste10Xp_ack_interrupt, |
|---|
| 104 | 97 | .config_intr = ste10Xp_config_intr, |
|---|