mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 17:24:17 +08:00
mlxbf_gige: remove own module name define and use KBUILD_MODNAME instead
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>
This commit is contained in:
parent
fbb89d02e3
commit
cfbc80e34e
@ -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),
|
||||
},
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user