Commit 9ee2b61d authored by Viresh Kumar's avatar Viresh Kumar Committed by Greg Kroah-Hartman

greybus: interface: remove double underscore from fn name

Also bring * closer to gb_interface_get_drvdata :)
Signed-off-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent 3b6cf2ee
...@@ -37,7 +37,7 @@ static inline void gb_interface_set_drvdata(struct gb_interface *intf, ...@@ -37,7 +37,7 @@ static inline void gb_interface_set_drvdata(struct gb_interface *intf,
dev_set_drvdata(&intf->dev, data); 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); return dev_get_drvdata(&intf->dev);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment