diff options
author | Venkatraman S <svenkatr@ti.com> | 2012-07-10 10:09:23 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2012-07-20 03:59:01 -0400 |
commit | 73ec513a3b1fa89d3cbaf0bc7dcc3a2b67936f2a (patch) | |
tree | 441c8b196c27034c10995ed96c093159309aa4be /drivers/scsi/ufs/ufshcd.c | |
parent | 17ccafc4ef00716d022cac9ff64cef0aafe7c02a (diff) |
[SCSI] ufs: reverse the ufshcd_is_device_present logic
Otherwise it counter intuitively returns 0 if device is present.
Signed-off-by: Venkatraman S <svenkatr@ti.com>
Reviewed-by: Namjae Jeon <linkinjeon@gmail.com>
Acked-by: Santosh Y <santoshsy@gmail.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/ufs/ufshcd.c')
-rw-r--r-- | 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 40c43bfce681..48b01fe0b9ba 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) | |||
232 | * the host controller | 232 | * the host controller |
233 | * @reg_hcs - host controller status register value | 233 | * @reg_hcs - host controller status register value |
234 | * | 234 | * |
235 | * Returns 0 if device present, non-zero if no device detected | 235 | * Returns 1 if device present, 0 if no device detected |
236 | */ | 236 | */ |
237 | static inline int ufshcd_is_device_present(u32 reg_hcs) | 237 | static inline int ufshcd_is_device_present(u32 reg_hcs) |
238 | { | 238 | { |
239 | return (DEVICE_PRESENT & reg_hcs) ? 0 : -1; | 239 | return (DEVICE_PRESENT & reg_hcs) ? 1 : 0; |
240 | } | 240 | } |
241 | 241 | ||
242 | /** | 242 | /** |
@@ -911,7 +911,7 @@ static int ufshcd_make_hba_operational(struct ufs_hba *hba) | |||
911 | 911 | ||
912 | /* check if device present */ | 912 | /* check if device present */ |
913 | reg = readl((hba->mmio_base + REG_CONTROLLER_STATUS)); | 913 | reg = readl((hba->mmio_base + REG_CONTROLLER_STATUS)); |
914 | if (ufshcd_is_device_present(reg)) { | 914 | if (!ufshcd_is_device_present(reg)) { |
915 | dev_err(&hba->pdev->dev, "cc: Device not present\n"); | 915 | dev_err(&hba->pdev->dev, "cc: Device not present\n"); |
916 | err = -ENXIO; | 916 | err = -ENXIO; |
917 | goto out; | 917 | goto out; |