hc
2024-05-10 23fa18eaa71266feff7ba8d83022d9e1cc83c65a
kernel/drivers/net/ethernet/freescale/ucc_geth_ethtool.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * Copyright (c) 2007 Freescale Semiconductor, Inc. All rights reserved.
34 *
....@@ -8,11 +9,6 @@
89 * Limitation:
910 * Can only get/set settings of the first queue.
1011 * 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.
1612 */
1713
1814 #include <linux/kernel.h>
....@@ -338,8 +334,6 @@
338334 struct ethtool_drvinfo *drvinfo)
339335 {
340336 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));
343337 strlcpy(drvinfo->bus_info, "QUICC ENGINE", sizeof(drvinfo->bus_info));
344338 }
345339