1
0
Fork 0

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>
hifive-unleashed-5.1
Viresh Kumar 2015-05-20 16:48:04 +05:30 committed by Greg Kroah-Hartman
parent 51b5d8d783
commit c16b63e851
1 changed files with 2 additions and 2 deletions

View 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 {