// SPDX-License-Identifier: GPL-2.0
/*
- * sound.c - Audio Application Interface Module for Mostcore
+ * sound.c - Sound component for Mostcore
*
* Copyright (C) 2015 Microchip Technology Germany II GmbH & Co. KG
*/
#define DRIVER_NAME "sound"
static struct list_head dev_list;
-static struct core_component audio_aim;
+static struct core_component comp;
/**
* struct channel - private structure to keep channel specific data
kthread_should_stop() ||
(channel->is_stream_running &&
(mbo = most_get_mbo(channel->iface, channel->id,
- &audio_aim))));
+ &comp))));
if (!mbo)
continue;
}
}
- if (most_start_channel(channel->iface, channel->id, &audio_aim)) {
+ if (most_start_channel(channel->iface, channel->id, &comp)) {
pr_err("most_start_channel() failed!\n");
if (cfg->direction == MOST_CH_TX)
kthread_stop(channel->playback_task);
if (channel->cfg->direction == MOST_CH_TX)
kthread_stop(channel->playback_task);
- most_stop_channel(channel->iface, channel->id, &audio_aim);
+ most_stop_channel(channel->iface, channel->id, &comp);
return 0;
}
/**
* Initialization of the struct core_component
*/
-static struct core_component audio_aim = {
+static struct core_component comp = {
.name = DRIVER_NAME,
.probe_channel = audio_probe_channel,
.disconnect_channel = audio_disconnect_channel,
INIT_LIST_HEAD(&dev_list);
- return most_register_component(&audio_aim);
+ return most_register_component(&comp);
}
static void __exit audio_exit(void)
snd_card_free(channel->card);
}
- most_deregister_component(&audio_aim);
+ most_deregister_component(&comp);
}
module_init(audio_init);