diff options
author | Stephen M. Cameron <scameron@beardog.cce.hp.com> | 2014-05-29 11:53:49 -0400 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2014-06-02 03:54:59 -0400 |
commit | 8645291b8d1bac28efb803e768e91f24c814679c (patch) | |
tree | 7bd4eeef3bd1b982be1d47cb650d6d0f25d4f1eb | |
parent | 7b2c46ee7259c52cf2c1f82ab100e9aaeb83f78a (diff) |
hpsa: remove bad unlikely annotation from device list updating code
Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com>
Reviewed-by: Justin Lindley <justin.lindley@hp.com>
Reviewed-by: Mike Miller <michael.miller@canonical.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
-rw-r--r-- | drivers/scsi/hpsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c index 538b8c68bb95..836c6c013ee8 100644 --- a/drivers/scsi/hpsa.c +++ b/drivers/scsi/hpsa.c | |||
@@ -3067,7 +3067,7 @@ static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno) | |||
3067 | ndev_allocated++; | 3067 | ndev_allocated++; |
3068 | } | 3068 | } |
3069 | 3069 | ||
3070 | if (unlikely(is_scsi_rev_5(h))) | 3070 | if (is_scsi_rev_5(h)) |
3071 | raid_ctlr_position = 0; | 3071 | raid_ctlr_position = 0; |
3072 | else | 3072 | else |
3073 | raid_ctlr_position = nphysicals + nlogicals; | 3073 | raid_ctlr_position = nphysicals + nlogicals; |