Commit 96c2af5c authored by Johan Hovold's avatar Johan Hovold Committed by Greg Kroah-Hartman

greybus: connection: rename connection-create interface

Drop the _dynamic suffix from the exported interface that drivers use to
create connections.
Reviewed-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarJohan Hovold <johan@hovoldconsulting.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent 8cff6c64
...@@ -112,7 +112,7 @@ static void gb_connection_init_name(struct gb_connection *connection) ...@@ -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: host device of the connection
* @hd_cport_id: host-device cport id, or -1 for dynamic allocation * @hd_cport_id: host-device cport id, or -1 for dynamic allocation
* @intf: remote interface, or NULL for static connections * @intf: remote interface, or NULL for static connections
...@@ -132,7 +132,7 @@ static void gb_connection_init_name(struct gb_connection *connection) ...@@ -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. * Return: A pointer to the new connection if successful, or NULL otherwise.
*/ */
static struct gb_connection * 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_interface *intf,
struct gb_bundle *bundle, int cport_id) struct gb_bundle *bundle, int cport_id)
{ {
...@@ -215,23 +215,23 @@ gb_connection_create(struct gb_host_device *hd, int hd_cport_id, ...@@ -215,23 +215,23 @@ gb_connection_create(struct gb_host_device *hd, int hd_cport_id,
struct gb_connection * struct gb_connection *
gb_connection_create_static(struct gb_host_device *hd, u16 hd_cport_id) 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 * struct gb_connection *
gb_connection_create_control(struct gb_interface *intf) 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 * 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; 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) static int gb_connection_hd_cport_enable(struct gb_connection *connection)
{ {
......
...@@ -58,7 +58,7 @@ struct gb_connection { ...@@ -58,7 +58,7 @@ struct gb_connection {
struct gb_connection *gb_connection_create_static(struct gb_host_device *hd, struct gb_connection *gb_connection_create_static(struct gb_host_device *hd,
u16 hd_cport_id); u16 hd_cport_id);
struct gb_connection *gb_connection_create_control(struct gb_interface *intf); struct gb_connection *gb_connection_create_control(struct gb_interface *intf);
struct gb_connection *gb_connection_create_dynamic(struct gb_bundle *bundle, struct gb_connection *gb_connection_create(struct gb_bundle *bundle,
u16 cport_id); u16 cport_id);
void gb_connection_destroy(struct gb_connection *connection); void gb_connection_destroy(struct gb_connection *connection);
......
...@@ -153,7 +153,7 @@ static int legacy_probe(struct gb_bundle *bundle, ...@@ -153,7 +153,7 @@ static int legacy_probe(struct gb_bundle *bundle,
for (i = 0; i < data->num_cports; ++i) { for (i = 0; i < data->num_cports; ++i) {
cport_desc = &bundle->cport_desc[i]; cport_desc = &bundle->cport_desc[i];
connection = gb_connection_create_dynamic(bundle, connection = gb_connection_create(bundle,
le16_to_cpu(cport_desc->id)); le16_to_cpu(cport_desc->id));
if (!connection) if (!connection)
goto err_connections_destroy; goto err_connections_destroy;
......
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