mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 1/2] scsi/ufs: reverse the ufshcd_is_device_present logic
@ 2012-04-06  5:27 Venkatraman S
  2012-04-06  5:27 ` [PATCH 2/2] scsi/ufs: Fix evaluation of task_failed status Venkatraman S
  2012-04-06  8:53 ` [PATCH 1/2] scsi/ufs: reverse the ufshcd_is_device_present logic Namjae Jeon
  0 siblings, 2 replies; 5+ messages in thread
From: Venkatraman S @ 2012-04-06  5:27 UTC (permalink / raw)
  To: linux-kernel; +Cc: Venkatraman S, Santosh Y, Andrew Morton

 Otherwise it counter intuitively returns 0 if device is present.

Signed-off-by: Venkatraman S <svenkatr@ti.com>
CC: Santosh Y <santoshsy@gmail.com>
CC: Andrew Morton <akpm@linux-foundation.org>
---
 drivers/scsi/ufs/ufshcd.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c
index 52b96e8..aa97200 100644
--- a/drivers/scsi/ufs/ufshcd.c
+++ b/drivers/scsi/ufs/ufshcd.c
@@ -232,11 +232,11 @@ static inline u32 ufshcd_get_ufs_version(struct ufs_hba *hba)
  *			      the host controller
  * @reg_hcs - host controller status register value
  *
- * Returns 0 if device present, non-zero if no device detected
+ * Returns 1 if device present, 0 if no device detected
  */
 static inline int ufshcd_is_device_present(u32 reg_hcs)
 {
-	return (DEVICE_PRESENT & reg_hcs) ? 0 : -1;
+	return (DEVICE_PRESENT & reg_hcs) ? 1 : 0;
 }
 
 /**
@@ -911,7 +911,7 @@ static int ufshcd_make_hba_operational(struct ufs_hba *hba)
 
 	/* check if device present */
 	reg = readl((hba->mmio_base + REG_CONTROLLER_STATUS));
-	if (ufshcd_is_device_present(reg)) {
+	if (!ufshcd_is_device_present(reg)) {
 		dev_err(&hba->pdev->dev, "cc: Device not present\n");
 		err = -ENXIO;
 		goto out;
-- 
1.7.5.4


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-04-06  9:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-06  5:27 [PATCH 1/2] scsi/ufs: reverse the ufshcd_is_device_present logic Venkatraman S
2012-04-06  5:27 ` [PATCH 2/2] scsi/ufs: Fix evaluation of task_failed status Venkatraman S
2012-04-06  8:57   ` Namjae Jeon
2012-04-06  9:19   ` Santosh Y
2012-04-06  8:53 ` [PATCH 1/2] scsi/ufs: reverse the ufshcd_is_device_present logic Namjae Jeon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®