greybus: interface: remove double underscore from fn name

Also bring * closer to gb_interface_get_drvdata :)

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
This commit is contained in:
Viresh Kumar 2015-03-19 17:02:48 +05:30 committed by Greg Kroah-Hartman
parent 3b6cf2ee3b
commit 9ee2b61df1

View file

@ -37,7 +37,7 @@ static inline void gb_interface_set_drvdata(struct gb_interface *intf,
dev_set_drvdata(&intf->dev, data);
}
static inline void * gb_interface__get_drvdata(struct gb_interface *intf)
static inline void *gb_interface_get_drvdata(struct gb_interface *intf)
{
return dev_get_drvdata(&intf->dev);
}