Substrings containing 'module' are replaced with 'component' by this patch.
It is needed to complete the process of changing the module designator from
AIM to Component.

Signed-off-by: Christian Gromm <christian.gr...@microchip.com>
---
 drivers/staging/most/core.c | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/drivers/staging/most/core.c b/drivers/staging/most/core.c
index d490bdc..b0e9179 100644
--- a/drivers/staging/most/core.c
+++ b/drivers/staging/most/core.c
@@ -526,7 +526,7 @@ static const struct attribute_group 
*interface_attr_groups[] = {
        NULL,
 };
 
-static struct core_component *match_module(char *name)
+static struct core_component *match_component(char *name)
 {
        struct core_component *comp;
 
@@ -571,7 +571,7 @@ static ssize_t links_show(struct device_driver *drv, char 
*buf)
        return strlen(buf);
 }
 
-static ssize_t modules_show(struct device_driver *drv, char *buf)
+static ssize_t components_show(struct device_driver *drv, char *buf)
 {
        struct core_component *comp;
        int offs = 0;
@@ -720,7 +720,7 @@ static ssize_t add_link_store(struct device_driver *drv,
        ret = split_string(buffer, &mdev, &mdev_ch, &comp_name, &comp_param);
        if (ret)
                return ret;
-       comp = match_module(comp_name);
+       comp = match_component(comp_name);
        if (!comp_param || *comp_param == 0) {
                snprintf(devnod_buf, sizeof(devnod_buf), "%s-%s", mdev,
                         mdev_ch);
@@ -764,7 +764,7 @@ static ssize_t remove_link_store(struct device_driver *drv,
        ret = split_string(buffer, &mdev, &mdev_ch, &comp_name, NULL);
        if (ret)
                return ret;
-       comp = match_module(comp_name);
+       comp = match_component(comp_name);
        c = get_channel(mdev, mdev_ch);
        if (!c)
                return -ENODEV;
@@ -781,24 +781,24 @@ static ssize_t remove_link_store(struct device_driver 
*drv,
 #define DRV_ATTR(_name)  (&driver_attr_##_name.attr)
 
 static DRIVER_ATTR_RO(links);
-static DRIVER_ATTR_RO(modules);
+static DRIVER_ATTR_RO(components);
 static DRIVER_ATTR_WO(add_link);
 static DRIVER_ATTR_WO(remove_link);
 
-static struct attribute *module_attrs[] = {
+static struct attribute *mc_attrs[] = {
        DRV_ATTR(links),
-       DRV_ATTR(modules),
+       DRV_ATTR(components),
        DRV_ATTR(add_link),
        DRV_ATTR(remove_link),
        NULL,
 };
 
-static struct attribute_group module_attr_group = {
-       .attrs = module_attrs,
+static struct attribute_group mc_attr_group = {
+       .attrs = mc_attrs,
 };
 
-static const struct attribute_group *module_attr_groups[] = {
-       &module_attr_group,
+static const struct attribute_group *mc_attr_groups[] = {
+       &mc_attr_group,
        NULL,
 };
 
@@ -1558,7 +1558,7 @@ static int __init most_init(void)
        mc.bus.match = most_match,
        mc.drv.name = "most_core",
        mc.drv.bus = &mc.bus,
-       mc.drv.groups = module_attr_groups;
+       mc.drv.groups = mc_attr_groups;
 
        err = bus_register(&mc.bus);
        if (err) {
-- 
2.7.4

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to