summaryrefslogtreecommitdiffstats
path: root/drivers/staging/most/sound
diff options
context:
space:
mode:
authorChristian Gromm <christian.gromm@microchip.com>2017-11-21 15:05:00 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-11-27 09:20:35 +0100
commita12844410c4350305b9ae1c1e0c5d6bd87297e6b (patch)
tree860ce2e0beed7f2546273b47cb256d676d093448 /drivers/staging/most/sound
parent66b468865ad83dc1bc48c6a74c84ddc218046ef4 (diff)
downloadlinux-a12844410c4350305b9ae1c1e0c5d6bd87297e6b.tar.bz2
staging: most: rename struct most_aim
The designator of a module that proivdes means to interface userspace is called an AIM. Since this name seems to be unappropiate, this kind of moduels are going to be referred to as componetns. This is done because such modules function as components to enhance the core with new features. This patch renames the struct most_aim to core_component. Signed-off-by: Christian Gromm <christian.gromm@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/most/sound')
-rw-r--r--drivers/staging/most/sound/sound.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/most/sound/sound.c b/drivers/staging/most/sound/sound.c
index 5504f93aca39..e605cbe57511 100644
--- a/drivers/staging/most/sound/sound.c
+++ b/drivers/staging/most/sound/sound.c
@@ -21,7 +21,7 @@
#define DRIVER_NAME "sound"
static struct list_head dev_list;
-static struct most_aim audio_aim;
+static struct core_component audio_aim;
/**
* struct channel - private structure to keep channel specific data
@@ -717,9 +717,9 @@ static int audio_tx_completion(struct most_interface *iface, int channel_id)
}
/**
- * Initialization of the struct most_aim
+ * Initialization of the struct core_component
*/
-static struct most_aim audio_aim = {
+static struct core_component audio_aim = {
.name = DRIVER_NAME,
.probe_channel = audio_probe_channel,
.disconnect_channel = audio_disconnect_channel,