|
|
@@ -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;
|
|
|
}
|