sfc: Replace EFX_DRIVER_NAME with KBUILD_MODNAME

Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Ben Hutchings 2010-06-23 11:30:26 +00:00 committed by David S. Miller
parent 62776d034c
commit c5d5f5fdc7
3 changed files with 3 additions and 5 deletions

View File

@ -2432,7 +2432,7 @@ static struct dev_pm_ops efx_pm_ops = {
}; };
static struct pci_driver efx_pci_driver = { static struct pci_driver efx_pci_driver = {
.name = EFX_DRIVER_NAME, .name = KBUILD_MODNAME,
.id_table = efx_pci_table, .id_table = efx_pci_table,
.probe = efx_pci_probe, .probe = efx_pci_probe,
.remove = efx_pci_remove, .remove = efx_pci_remove,

View File

@ -234,7 +234,7 @@ static void efx_ethtool_get_drvinfo(struct net_device *net_dev,
{ {
struct efx_nic *efx = netdev_priv(net_dev); struct efx_nic *efx = netdev_priv(net_dev);
strlcpy(info->driver, EFX_DRIVER_NAME, sizeof(info->driver)); strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
strlcpy(info->version, EFX_DRIVER_VERSION, sizeof(info->version)); strlcpy(info->version, EFX_DRIVER_VERSION, sizeof(info->version));
if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0) if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0)
siena_print_fwver(efx, info->fw_version, siena_print_fwver(efx, info->fw_version,

View File

@ -39,9 +39,7 @@
* Build definitions * Build definitions
* *
**************************************************************************/ **************************************************************************/
#ifndef EFX_DRIVER_NAME
#define EFX_DRIVER_NAME "sfc"
#endif
#define EFX_DRIVER_VERSION "3.0" #define EFX_DRIVER_VERSION "3.0"
#ifdef EFX_ENABLE_DEBUG #ifdef EFX_ENABLE_DEBUG