.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Copyright(c) 2009 - 2009 Atheros Corporation. All rights reserved. |
---|
3 | 4 | * |
---|
4 | 5 | * Derived from Intel e1000 driver |
---|
5 | 6 | * Copyright(c) 1999 - 2005 Intel Corporation. All rights reserved. |
---|
6 | | - * |
---|
7 | | - * This program is free software; you can redistribute it and/or modify it |
---|
8 | | - * under the terms of the GNU General Public License as published by the Free |
---|
9 | | - * Software Foundation; either version 2 of the License, or (at your option) |
---|
10 | | - * any later version. |
---|
11 | | - * |
---|
12 | | - * This program is distributed in the hope that it will be useful, but WITHOUT |
---|
13 | | - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
---|
14 | | - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
---|
15 | | - * more details. |
---|
16 | | - * |
---|
17 | | - * You should have received a copy of the GNU General Public License along with |
---|
18 | | - * this program; if not, write to the Free Software Foundation, Inc., 59 |
---|
19 | | - * Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
---|
20 | | - * |
---|
21 | 7 | */ |
---|
22 | 8 | |
---|
23 | 9 | #include <linux/netdevice.h> |
---|
.. | .. |
---|
235 | 221 | struct atl1c_adapter *adapter = netdev_priv(netdev); |
---|
236 | 222 | |
---|
237 | 223 | strlcpy(drvinfo->driver, atl1c_driver_name, sizeof(drvinfo->driver)); |
---|
238 | | - strlcpy(drvinfo->version, atl1c_driver_version, |
---|
239 | | - sizeof(drvinfo->version)); |
---|
240 | 224 | strlcpy(drvinfo->bus_info, pci_name(adapter->pdev), |
---|
241 | 225 | sizeof(drvinfo->bus_info)); |
---|
242 | 226 | } |
---|