staging: rts5208: Add space around binary operators

Add space around binary operators to resolve checkpatch issue.

Signed-off-by: Namrata A Shettar <namrataashettar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Namrata A Shettar 2016-09-29 22:05:31 +05:30 committed by Greg Kroah-Hartman
parent c4610f6e1d
commit 6d81bf2550

View file

@ -484,14 +484,14 @@ static int inquiry(struct scsi_cmnd *srb, struct rtsx_chip *chip)
u8 card = get_lun_card(chip, lun); u8 card = get_lun_card(chip, lun);
bool pro_formatter_flag = false; bool pro_formatter_flag = false;
unsigned char inquiry_buf[] = { unsigned char inquiry_buf[] = {
QULIFIRE|DRCT_ACCESS_DEV, QULIFIRE | DRCT_ACCESS_DEV,
RMB_DISC|0x0D, RMB_DISC | 0x0D,
0x00, 0x00,
0x01, 0x01,
0x1f, 0x1f,
0x02, 0x02,
0, 0,
REL_ADR|WBUS_32|WBUS_16|SYNC|LINKED|CMD_QUE|SFT_RE, REL_ADR | WBUS_32 | WBUS_16 | SYNC | LINKED | CMD_QUE | SFT_RE,
}; };
if (CHECK_LUN_MODE(chip, SD_MS_2LUN)) { if (CHECK_LUN_MODE(chip, SD_MS_2LUN)) {
@ -1986,8 +1986,8 @@ static int read_phy_register(struct scsi_cmnd *srb, struct rtsx_chip *chip)
return TRANSPORT_FAILED; return TRANSPORT_FAILED;
} }
buf[2*i] = (u8)(val >> 8); buf[2 * i] = (u8)(val >> 8);
buf[2*i+1] = (u8)val; buf[2 * i + 1] = (u8)val;
} }
len = (unsigned short)min_t(unsigned int, scsi_bufflen(srb), len = (unsigned short)min_t(unsigned int, scsi_bufflen(srb),
@ -2045,7 +2045,7 @@ static int write_phy_register(struct scsi_cmnd *srb, struct rtsx_chip *chip)
} }
for (i = 0; i < len / 2; i++) { for (i = 0; i < len / 2; i++) {
val = ((u16)buf[2*i] << 8) | buf[2*i+1]; val = ((u16)buf[2 * i] << 8) | buf[2 * i + 1];
retval = rtsx_write_phy_register(chip, addr + i, val); retval = rtsx_write_phy_register(chip, addr + i, val);
if (retval != STATUS_SUCCESS) { if (retval != STATUS_SUCCESS) {
vfree(buf); vfree(buf);
@ -3067,18 +3067,18 @@ static int get_ms_information(struct scsi_cmnd *srb, struct rtsx_chip *chip)
buf[i++] = 0x80; buf[i++] = 0x80;
if ((dev_info_id == 0x10) || (dev_info_id == 0x13)) { if ((dev_info_id == 0x10) || (dev_info_id == 0x13)) {
/* System Information */ /* System Information */
memcpy(buf+i, ms_card->raw_sys_info, 96); memcpy(buf + i, ms_card->raw_sys_info, 96);
} else { } else {
/* Model Name */ /* Model Name */
memcpy(buf+i, ms_card->raw_model_name, 48); memcpy(buf + i, ms_card->raw_model_name, 48);
} }
rtsx_stor_set_xfer_buf(buf, buf_len, srb); rtsx_stor_set_xfer_buf(buf, buf_len, srb);
if (dev_info_id == 0x15) if (dev_info_id == 0x15)
scsi_set_resid(srb, scsi_bufflen(srb)-0x3C); scsi_set_resid(srb, scsi_bufflen(srb) - 0x3C);
else else
scsi_set_resid(srb, scsi_bufflen(srb)-0x6C); scsi_set_resid(srb, scsi_bufflen(srb) - 0x6C);
kfree(buf); kfree(buf);
return STATUS_SUCCESS; return STATUS_SUCCESS;