| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0+ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * drivers/net/phy/cicada.c |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 6 | 7 | * Author: Andy Fleming |
|---|
| 7 | 8 | * |
|---|
| 8 | 9 | * Copyright (c) 2004 Freescale Semiconductor, Inc. |
|---|
| 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 | #include <linux/kernel.h> |
|---|
| 17 | 12 | #include <linux/string.h> |
|---|
| .. | .. |
|---|
| 107 | 102 | .phy_id = 0x000fc410, |
|---|
| 108 | 103 | .name = "Cicada Cis8201", |
|---|
| 109 | 104 | .phy_id_mask = 0x000ffff0, |
|---|
| 110 | | - .features = PHY_GBIT_FEATURES, |
|---|
| 111 | | - .flags = PHY_HAS_INTERRUPT, |
|---|
| 105 | + /* PHY_GBIT_FEATURES */ |
|---|
| 112 | 106 | .config_init = &cis820x_config_init, |
|---|
| 113 | 107 | .ack_interrupt = &cis820x_ack_interrupt, |
|---|
| 114 | 108 | .config_intr = &cis820x_config_intr, |
|---|
| .. | .. |
|---|
| 116 | 110 | .phy_id = 0x000fc440, |
|---|
| 117 | 111 | .name = "Cicada Cis8204", |
|---|
| 118 | 112 | .phy_id_mask = 0x000fffc0, |
|---|
| 119 | | - .features = PHY_GBIT_FEATURES, |
|---|
| 120 | | - .flags = PHY_HAS_INTERRUPT, |
|---|
| 113 | + /* PHY_GBIT_FEATURES */ |
|---|
| 121 | 114 | .config_init = &cis820x_config_init, |
|---|
| 122 | 115 | .ack_interrupt = &cis820x_ack_interrupt, |
|---|
| 123 | 116 | .config_intr = &cis820x_config_intr, |
|---|