mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 16:44:58 +02:00
staging: rts5208: rtsx_chip: 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:
parent
5adb3290ba
commit
2296f5215f
|
|
@ -760,7 +760,7 @@ static inline int check_sd_current_prior(u32 sd_current_prior)
|
|||
int i;
|
||||
|
||||
for (i = 0; i < 4; i++) {
|
||||
u8 tmp = (u8)(sd_current_prior >> (i*8));
|
||||
u8 tmp = (u8)(sd_current_prior >> (i * 8));
|
||||
|
||||
if (tmp > 0x03) {
|
||||
fake_para = true;
|
||||
|
|
@ -2288,7 +2288,7 @@ int rtsx_read_ppbuf(struct rtsx_chip *chip, u8 *buf, int buf_len)
|
|||
|
||||
ptr = buf;
|
||||
reg_addr = PPBUF_BASE2;
|
||||
for (i = 0; i < buf_len/256; i++) {
|
||||
for (i = 0; i < buf_len / 256; i++) {
|
||||
rtsx_init_cmd(chip);
|
||||
|
||||
for (j = 0; j < 256; j++)
|
||||
|
|
@ -2304,10 +2304,10 @@ int rtsx_read_ppbuf(struct rtsx_chip *chip, u8 *buf, int buf_len)
|
|||
ptr += 256;
|
||||
}
|
||||
|
||||
if (buf_len%256) {
|
||||
if (buf_len % 256) {
|
||||
rtsx_init_cmd(chip);
|
||||
|
||||
for (j = 0; j < buf_len%256; j++)
|
||||
for (j = 0; j < buf_len % 256; j++)
|
||||
rtsx_add_cmd(chip, READ_REG_CMD, reg_addr++, 0, 0);
|
||||
|
||||
retval = rtsx_send_cmd(chip, 0, 250);
|
||||
|
|
@ -2317,7 +2317,7 @@ int rtsx_read_ppbuf(struct rtsx_chip *chip, u8 *buf, int buf_len)
|
|||
}
|
||||
}
|
||||
|
||||
memcpy(ptr, rtsx_get_cmd_data(chip), buf_len%256);
|
||||
memcpy(ptr, rtsx_get_cmd_data(chip), buf_len % 256);
|
||||
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user