[PATCH] Staging: hv: netvsc: advertise hv_netvsc instead of netvsc as driver name
From: Olaf Hering <hidden>
Date: 2011-09-09 12:46:54
Also in:
lkml
From: Olaf Hering <hidden>
Date: 2011-09-09 12:46:54
Also in:
lkml
Signed-off-by: Olaf Hering <redacted>
--- a/drivers/staging/hv/netvsc_drv.c
+++ b/drivers/staging/hv/netvsc_drv.c@@ -41,6 +41,8 @@ #include "hyperv.h" #include "hyperv_net.h" +#define MODULE_NAME "hv_netvsc" + struct net_device_context { /* point back to our device context */ struct hv_device *device_ctx;
@@ -291,7 +293,7 @@ int netvsc_recv_callback(struct hv_devic static void netvsc_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *info) { - strcpy(info->driver, "hv_netvsc"); + strcpy(info->driver, MODULE_NAME); strcpy(info->version, HV_DRV_VERSION); strcpy(info->fw_version, "N/A"); }
@@ -420,7 +422,7 @@ MODULE_DEVICE_TABLE(vmbus, id_table); /* The one and only one */ static struct hv_driver netvsc_drv = { - .name = "netvsc", + .name = MODULE_NAME, .id_table = id_table, .probe = netvsc_probe, .remove = netvsc_remove,