mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 09:41:54 +09:00
greybus: connection: fix version-request error handling
Use the host device and connection name when logging errors as the version-request helper must not assume that all connection have a bundle. Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b77f9328f2
commit
4e6e3f5cff
@@ -378,8 +378,9 @@ static int gb_connection_protocol_get_version(struct gb_connection *connection)
|
||||
|
||||
ret = gb_protocol_get_version(connection);
|
||||
if (ret) {
|
||||
dev_err(&connection->bundle->dev,
|
||||
"failed to get protocol version: %d\n", ret);
|
||||
dev_err(&connection->hd->dev,
|
||||
"%s: failed to get protocol version: %d\n",
|
||||
connection->name, ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user