summaryrefslogtreecommitdiff
path: root/drivers/staging/most/video
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/video
parent66b468865ad83dc1bc48c6a74c84ddc218046ef4 (diff)
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/video')
-rw-r--r--drivers/staging/most/video/video.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/most/video/video.c b/drivers/staging/most/video/video.c
index 25ae4887b04d..2b8b3aed1ec2 100644
--- a/drivers/staging/most/video/video.c
+++ b/drivers/staging/most/video/video.c
@@ -25,7 +25,7 @@
#define V4L2_AIM_MAX_INPUT 1
-static struct most_aim aim_info;
+static struct core_component aim_info;
struct most_video_dev {
struct most_interface *iface;
@@ -562,7 +562,7 @@ static int aim_disconnect_channel(struct most_interface *iface,
return 0;
}
-static struct most_aim aim_info = {
+static struct core_component aim_info = {
.name = "v4l",
.probe_channel = aim_probe_channel,
.disconnect_channel = aim_disconnect_channel,