OSDN Git Service

greybus: module: name routines consistently
authorViresh Kumar <viresh.kumar@linaro.org>
Wed, 20 May 2015 11:18:04 +0000 (16:48 +0530)
committerGreg Kroah-Hartman <gregkh@google.com>
Thu, 21 May 2015 05:39:18 +0000 (22:39 -0700)
Routines should be named this way: gb_<object>_<operation>. Fix all
routines that don't match this.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: Alex Elder <elder@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
drivers/staging/greybus/module.c

index 8ed96a8..07b7e44 100644 (file)
@@ -71,7 +71,7 @@ static struct attribute *module_attrs[] = {
 };
 ATTRIBUTE_GROUPS(module);
 
-static void greybus_module_release(struct device *dev)
+static void gb_module_release(struct device *dev)
 {
        struct gb_module *module = to_gb_module(dev);
 
@@ -80,7 +80,7 @@ static void greybus_module_release(struct device *dev)
 
 struct device_type greybus_module_type = {
        .name =         "greybus_module",
-       .release =      greybus_module_release,
+       .release =      gb_module_release,
 };
 
 struct module_find {