.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Copyright (c) 2007 Freescale Semiconductor, Inc. All rights reserved. |
---|
3 | 4 | * |
---|
.. | .. |
---|
8 | 9 | * Limitation: |
---|
9 | 10 | * Can only get/set settings of the first queue. |
---|
10 | 11 | * Need to re-open the interface manually after changing some parameters. |
---|
11 | | - * |
---|
12 | | - * This program is free software; you can redistribute it and/or modify it |
---|
13 | | - * under the terms of the GNU General Public License as published by the |
---|
14 | | - * Free Software Foundation; either version 2 of the License, or (at your |
---|
15 | | - * option) any later version. |
---|
16 | 12 | */ |
---|
17 | 13 | |
---|
18 | 14 | #include <linux/kernel.h> |
---|
.. | .. |
---|
338 | 334 | struct ethtool_drvinfo *drvinfo) |
---|
339 | 335 | { |
---|
340 | 336 | strlcpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver)); |
---|
341 | | - strlcpy(drvinfo->version, DRV_VERSION, sizeof(drvinfo->version)); |
---|
342 | | - strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version)); |
---|
343 | 337 | strlcpy(drvinfo->bus_info, "QUICC ENGINE", sizeof(drvinfo->bus_info)); |
---|
344 | 338 | } |
---|
345 | 339 | |
---|