Commit 64f28ada authored by Rui Miguel Silva's avatar Rui Miguel Silva Committed by Greg Kroah-Hartman

greybus: greybus_protocol: fix order of sdio get caps response

Order of the field of the sdio get caps operation response were wrong,
that influence later the frequencies used by core, during normal
operation.

Tested: verified that the values inserted by the fw are the correct ones
for the field.
Suggested-by: default avatarJackson Chang <jacksonc@bsquare.com>
Signed-off-by: default avatarRui Miguel Silva <rui.silva@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent 4523eae6
......@@ -1540,10 +1540,10 @@ struct gb_sdio_get_caps_response {
/* see possible values below at vdd */
__le32 ocr;
__le16 max_blk_count;
__le16 max_blk_size;
__le32 f_min;
__le32 f_max;
__le16 max_blk_count;
__le16 max_blk_size;
} __packed;
/* set ios request: response has no payload */
......
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