[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20110525020302.7540c71f@absol.kitzblitz>
Date: Wed, 25 May 2011 02:03:02 +0200
From: Nicolas Kaiser <nikai@...ai.net>
To: Greg Kroah-Hartman <gregkh@...e.de>
Cc: Wei Wang <wei_wang@...lsil.com.cn>, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] staging: rts_pstor: use bitwise operator instead of logical
one
Looks like a typo?
Signed-off-by: Nicolas Kaiser <nikai@...ai.net>
---
drivers/staging/rts_pstor/sd.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/staging/rts_pstor/sd.c b/drivers/staging/rts_pstor/sd.c
index bddb031..cdae497 100644
--- a/drivers/staging/rts_pstor/sd.c
+++ b/drivers/staging/rts_pstor/sd.c
@@ -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;
--
1.7.5.rc3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists