mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 02:01:29 +00:00
staging: rts_pstor: use bitwise operator instead of logical one
Looks like a typo. Signed-off-by: Nicolas Kaiser <nikai@nikai.net> Reviewed-by: Peter Huewe <peterhuewe@gmx.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
827e4a07e8
commit
cddac88f43
@ -2328,7 +2328,7 @@ Switch_Fail:
|
||||
|
||||
retval = sd_send_cmd_get_rsp(chip, IO_SEND_OP_COND, 0, SD_RSP_TYPE_R4, rsp, 5);
|
||||
if (retval == STATUS_SUCCESS) {
|
||||
int func_num = (rsp[1] >> 4) && 0x07;
|
||||
int func_num = (rsp[1] >> 4) & 0x07;
|
||||
if (func_num) {
|
||||
RTSX_DEBUGP("SD_IO card (Function number: %d)!\n", func_num);
|
||||
chip->sd_io = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user