summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/connection.c
diff options
context:
space:
mode:
authorJohan Hovold <johan@hovoldconsulting.com>2016-01-21 17:34:15 +0100
committerGreg Kroah-Hartman <gregkh@google.com>2016-01-21 22:45:09 -0800
commit96c2af5c6bf7dda9498fdcea57fde1bdc677236a (patch)
tree4f63fcb4f27b060a7dcc3330f990c6a9d3859ee6 /drivers/staging/greybus/connection.c
parent8cff6c6473db471d7da9dd6dfbfcebdc4d617aa8 (diff)
downloadop-kernel-dev-96c2af5c6bf7dda9498fdcea57fde1bdc677236a.zip
op-kernel-dev-96c2af5c6bf7dda9498fdcea57fde1bdc677236a.tar.gz
greybus: connection: rename connection-create interface
Drop the _dynamic suffix from the exported interface that drivers use to create connections. Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/connection.c')
-rw-r--r--drivers/staging/greybus/connection.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/staging/greybus/connection.c b/drivers/staging/greybus/connection.c
index 227bfe8..5d0edbe 100644
--- a/drivers/staging/greybus/connection.c
+++ b/drivers/staging/greybus/connection.c
@@ -112,7 +112,7 @@ static void gb_connection_init_name(struct gb_connection *connection)
}
/*
- * gb_connection_create() - create a Greybus connection
+ * _gb_connection_create() - create a Greybus connection
* @hd: host device of the connection
* @hd_cport_id: host-device cport id, or -1 for dynamic allocation
* @intf: remote interface, or NULL for static connections
@@ -132,7 +132,7 @@ static void gb_connection_init_name(struct gb_connection *connection)
* Return: A pointer to the new connection if successful, or NULL otherwise.
*/
static struct gb_connection *
-gb_connection_create(struct gb_host_device *hd, int hd_cport_id,
+_gb_connection_create(struct gb_host_device *hd, int hd_cport_id,
struct gb_interface *intf,
struct gb_bundle *bundle, int cport_id)
{
@@ -215,23 +215,23 @@ err_unlock:
struct gb_connection *
gb_connection_create_static(struct gb_host_device *hd, u16 hd_cport_id)
{
- return gb_connection_create(hd, hd_cport_id, NULL, NULL, 0);
+ return _gb_connection_create(hd, hd_cport_id, NULL, NULL, 0);
}
struct gb_connection *
gb_connection_create_control(struct gb_interface *intf)
{
- return gb_connection_create(intf->hd, -1, intf, NULL, 0);
+ return _gb_connection_create(intf->hd, -1, intf, NULL, 0);
}
struct gb_connection *
-gb_connection_create_dynamic(struct gb_bundle *bundle, u16 cport_id)
+gb_connection_create(struct gb_bundle *bundle, u16 cport_id)
{
struct gb_interface *intf = bundle->intf;
- return gb_connection_create(intf->hd, -1, intf, bundle, cport_id);
+ return _gb_connection_create(intf->hd, -1, intf, bundle, cport_id);
}
-EXPORT_SYMBOL_GPL(gb_connection_create_dynamic);
+EXPORT_SYMBOL_GPL(gb_connection_create);
static int gb_connection_hd_cport_enable(struct gb_connection *connection)
{
OpenPOWER on IntegriCloud