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>
 }
 
 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;
        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;