aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/connection.c
diff options
context:
space:
mode:
authorJohan Hovold <johan@hovoldconsulting.com>2016-05-27 17:26:31 +0200
committerGreg Kroah-Hartman <gregkh@google.com>2016-05-27 12:19:29 -0700
commit00ad6975e7ca131a446c3c2e6510eec39664646d (patch)
tree7e481fe2a39fe4de03a960c8fd7c4b1fb6ce09c7 /drivers/staging/greybus/connection.c
parentgreybus: connection: rename an error label (diff)
downloadlinux-dev-00ad6975e7ca131a446c3c2e6510eec39664646d.tar.xz
linux-dev-00ad6975e7ca131a446c3c2e6510eec39664646d.zip
greybus: connection: move CPort Buffer configuration out of svc helpers
The CPort Buffer configuration in the host-device needs to match the CPort feature flags set by the SVC, but they need not always be configured at the same point in time. This will be used when implementing proper connection tear down. 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.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/drivers/staging/greybus/connection.c b/drivers/staging/greybus/connection.c
index 9c7133e3ed4b..f3a3915de272 100644
--- a/drivers/staging/greybus/connection.c
+++ b/drivers/staging/greybus/connection.c
@@ -345,7 +345,7 @@ gb_connection_svc_connection_create(struct gb_connection *connection)
int ret;
if (gb_connection_is_static(connection))
- return gb_connection_hd_cport_features_enable(connection);
+ return 0;
intf = connection->intf;
@@ -373,23 +373,12 @@ gb_connection_svc_connection_create(struct gb_connection *connection)
return ret;
}
- ret = gb_connection_hd_cport_features_enable(connection);
- if (ret) {
- gb_svc_connection_destroy(hd->svc, hd->svc->ap_intf_id,
- connection->hd_cport_id,
- intf->interface_id,
- connection->intf_cport_id);
- return ret;
- }
-
return 0;
}
static void
gb_connection_svc_connection_destroy(struct gb_connection *connection)
{
- gb_connection_hd_cport_features_disable(connection);
-
if (gb_connection_is_static(connection))
return;
@@ -557,6 +546,10 @@ static int _gb_connection_enable(struct gb_connection *connection, bool rx)
if (ret)
goto err_hd_cport_disable;
+ ret = gb_connection_hd_cport_features_enable(connection);
+ if (ret)
+ goto err_svc_connection_destroy;
+
spin_lock_irq(&connection->lock);
if (connection->handler && rx)
connection->state = GB_CONNECTION_STATE_ENABLED;
@@ -576,6 +569,8 @@ err_flush_operations:
gb_connection_cancel_operations(connection, -ESHUTDOWN);
spin_unlock_irq(&connection->lock);
+ gb_connection_hd_cport_features_disable(connection);
+err_svc_connection_destroy:
gb_connection_svc_connection_destroy(connection);
err_hd_cport_disable:
gb_connection_hd_cport_disable(connection);
@@ -654,6 +649,7 @@ void gb_connection_disable(struct gb_connection *connection)
gb_connection_cancel_operations(connection, -ESHUTDOWN);
spin_unlock_irq(&connection->lock);
+ gb_connection_hd_cport_features_disable(connection);
gb_connection_svc_connection_destroy(connection);
gb_connection_hd_cport_disable(connection);
@@ -675,6 +671,7 @@ void gb_connection_disable_forced(struct gb_connection *connection)
gb_connection_cancel_operations(connection, -ESHUTDOWN);
spin_unlock_irq(&connection->lock);
+ gb_connection_hd_cport_features_disable(connection);
gb_connection_svc_connection_destroy(connection);
gb_connection_hd_cport_disable(connection);