connection->intf_cport_id);
}
-static void gb_connection_disconnected(struct gb_connection *connection)
+/* Inform Interface about inactive CPorts */
+static void
+gb_connection_control_disconnected(struct gb_connection *connection)
{
+ struct gb_protocol *protocol = connection->protocol;
struct gb_control *control;
- int cport_id = connection->intf_cport_id;
+ u16 cport_id = connection->intf_cport_id;
int ret;
- /* Inform Interface about inactive CPorts */
- if (connection->protocol->flags & GB_PROTOCOL_SKIP_CONTROL_DISCONNECTED)
+ if (protocol->flags & GB_PROTOCOL_SKIP_CONTROL_DISCONNECTED)
return;
control = connection->bundle->intf->control;
ret = gb_control_disconnected_operation(control, cport_id);
- if (ret)
+ if (ret) {
dev_warn(&connection->dev,
- "Failed to disconnect CPort-%d (%d)\n", cport_id, ret);
+ "failed to disconnect cport: %d\n", ret);
+ }
}
static int gb_connection_init(struct gb_connection *connection)
connection->state = GB_CONNECTION_STATE_ERROR;
spin_unlock_irq(&connection->lock);
- gb_connection_disconnected(connection);
+ gb_connection_control_disconnected(connection);
err_svc_destroy:
gb_connection_svc_connection_destroy(connection);
gb_connection_cancel_operations(connection, -ESHUTDOWN);
connection->protocol->connection_exit(connection);
- gb_connection_disconnected(connection);
+ gb_connection_control_disconnected(connection);
gb_connection_svc_connection_destroy(connection);
}