aboutsummaryrefslogtreecommitdiffstats
path: root/sound/firewire/fireworks
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2014-06-04 02:25:36 -0400
committerTakashi Iwai <tiwai@suse.de>2014-06-04 08:37:59 -0400
commit021fb6f27591ff3eab29278d822935fe2d504a8b (patch)
tree6bab7c67250e34130ae16284514dd09b9bed104f /sound/firewire/fireworks
parentf3479150923d164470eef7f33b0192f82de51403 (diff)
ALSA: fireworks: Remove meaningless mutex_destroy()
Currently mutex_destroy() is called in module's cleanup function. But after cleaned up, this mutex is automatically released. So this function call is meaningless. [fixed a typo in changelog by tiwai] Signed-off-by: Takashi Sakamoto <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.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/firewire/fireworks/fireworks.c b/sound/firewire/fireworks/fireworks.c
index 996fdc44c83c..3e2ed8e82cbc 100644
--- a/sound/firewire/fireworks/fireworks.c
+++ b/sound/firewire/fireworks/fireworks.c
@@ -346,7 +346,6 @@ static void __exit snd_efw_exit(void)
346{ 346{
347 snd_efw_transaction_unregister(); 347 snd_efw_transaction_unregister();
348 driver_unregister(&efw_driver.driver); 348 driver_unregister(&efw_driver.driver);
349 mutex_destroy(&devices_mutex);
350} 349}
351 350
352module_init(snd_efw_init); 351module_init(snd_efw_init);