greybus: sdio: fix command type defines

Broadcast command with response and without response where swapped
related to what is defined in greybus specification.

Make it coherent with the document.

Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>
Signed-off-by: Johan Hovold <johan@hovoldconsulting.com>
This commit is contained in:
Rui Miguel Silva 2015-08-20 15:20:17 +01:00 committed by Johan Hovold
parent af0b4d5a19
commit 2d465d57c8

View file

@ -1031,8 +1031,8 @@ struct gb_sdio_command_request {
__u8 cmd_type;
#define GB_SDIO_CMD_AC 0x00
#define GB_SDIO_CMD_ADTC 0x01
#define GB_SDIO_CMD_BCR 0x02
#define GB_SDIO_CMD_BC 0x03
#define GB_SDIO_CMD_BC 0x02
#define GB_SDIO_CMD_BCR 0x03
__le32 cmd_arg;
} __packed;