staging: most: core: rename function link_channel_to_aim
authorChristian Gromm <christian.gromm@microchip.com>
Tue, 21 Nov 2017 14:05:04 +0000 (15:05 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Nov 2017 08:20:36 +0000 (09:20 +0100)
This patch renames the function link_channel_to_aim to
link_channel_to_component. It is needed because userspace
interfacing modules are referred to as components.

Signed-off-by: Christian Gromm <christian.gromm@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/most/core.c

index ebfa97c..174c88a 100644 (file)
@@ -661,9 +661,9 @@ static struct most_channel *get_channel(char *mdev, char *mdev_ch)
 }
 
 static
-inline int link_channel_to_aim(struct most_channel *c,
-                              struct core_component *comp,
-                              char *comp_param)
+inline int link_channel_to_component(struct most_channel *c,
+                                    struct core_component *comp,
+                                    char *comp_param)
 {
        int ret;
        struct core_component **comp_ptr;
@@ -739,7 +739,7 @@ static ssize_t add_link_store(struct device_driver *drv,
        if (!c)
                return -ENODEV;
 
-       ret = link_channel_to_aim(c, comp, comp_param);
+       ret = link_channel_to_component(c, comp, comp_param);
        if (ret)
                return ret;