diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2020-03-06 14:52:29 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-03-06 15:54:03 +0100 |
commit | 9c0d16ac059148fc7647f5f9e90df6f34d3439f0 (patch) | |
tree | e1a2abacfac1946cec98c02634c52a54214da3eb /sound/firewire/fireworks | |
parent | ALSA: usb-audio: Fix missing braces in some struct inits (diff) | |
download | linux-9c0d16ac059148fc7647f5f9e90df6f34d3439f0.tar.xz linux-9c0d16ac059148fc7647f5f9e90df6f34d3439f0.zip |
ALSA: firewire: use KBUILD_MODNAME for struct driver.name instead of string
KBUILD_MODNAME is available to name kernel modules according to its object
name. This commit uses the macro instead of string for name field of
struct driver since drivers in ALSA firewire stack have the same name of
each object name.
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Link: https://lore.kernel.org/r/20200306135229.11659-1-o-takashi@sakamocchi.jp
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/firewire/fireworks')
-rw-r--r-- | sound/firewire/fireworks/fireworks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/firewire/fireworks/fireworks.c b/sound/firewire/fireworks/fireworks.c index 134fc9ee26b9..b1cc013a3540 100644 --- a/sound/firewire/fireworks/fireworks.c +++ b/sound/firewire/fireworks/fireworks.c @@ -362,7 +362,7 @@ MODULE_DEVICE_TABLE(ieee1394, efw_id_table); static struct fw_driver efw_driver = { .driver = { .owner = THIS_MODULE, - .name = "snd-fireworks", + .name = KBUILD_MODNAME, .bus = &fw_bus_type, }, .probe = efw_probe, |