greybus: module: name routines consistently

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>
This commit is contained in:
Viresh Kumar 2015-05-20 16:48:04 +05:30 committed by Greg Kroah-Hartman
parent 51b5d8d783
commit c16b63e851

View file

@ -71,7 +71,7 @@ static struct attribute *module_attrs[] = {
}; };
ATTRIBUTE_GROUPS(module); 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); 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 = { struct device_type greybus_module_type = {
.name = "greybus_module", .name = "greybus_module",
.release = greybus_module_release, .release = gb_module_release,
}; };
struct module_find { struct module_find {