OSDN Git Service

mlxbf_gige: remove own module name define and use KBUILD_MODNAME instead
authorDavid Thompson <davthompson@nvidia.com>
Tue, 14 Jun 2022 21:26:02 +0000 (17:26 -0400)
committerJakub Kicinski <kuba@kernel.org>
Thu, 16 Jun 2022 02:55:52 +0000 (19:55 -0700)
This patch adds use of KBUILD_MODNAME as defined by the build system,
replacing the definition and use of a custom-defined name.

Signed-off-by: David Thompson <davthompson@nvidia.com>
Signed-off-by: Asmaa Mnebhi <asmaa@nvidia.com>
Link: https://lore.kernel.org/r/20220614212602.28061-1-davthompson@nvidia.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_main.c

index 84621b4..b03e1c6 100644 (file)
@@ -19,8 +19,6 @@
 #include "mlxbf_gige.h"
 #include "mlxbf_gige_regs.h"
 
-#define DRV_NAME    "mlxbf_gige"
-
 /* Allocate SKB whose payload pointer aligns with the Bluefield
  * hardware DMA limitation, i.e. DMA operation can't cross
  * a 4KB boundary.  A maximum packet size of 2KB is assumed in the
@@ -427,7 +425,7 @@ static struct platform_driver mlxbf_gige_driver = {
        .remove = mlxbf_gige_remove,
        .shutdown = mlxbf_gige_shutdown,
        .driver = {
-               .name = DRV_NAME,
+               .name = KBUILD_MODNAME,
                .acpi_match_table = ACPI_PTR(mlxbf_gige_acpi_match),
        },
 };