summaryrefslogtreecommitdiff
path: root/drivers/scsi/hpsa.c
diff options
context:
space:
mode:
authorStephen M. Cameron <scameron@beardog.cce.hp.com>2010-02-04 08:42:35 -0600
committerJames Bottomley <James.Bottomley@suse.de>2010-02-17 13:19:52 -0600
commit900c54404a9456b3ff10745e5e8f64b12c3a6ef7 (patch)
tree44a6372391cb24f0414141f775d15c93b26ee08c /drivers/scsi/hpsa.c
parent84ca0be2a2cd9730683310b831db9d2fa60b3b0b (diff)
downloadlinux-3.10-900c54404a9456b3ff10745e5e8f64b12c3a6ef7.tar.gz
linux-3.10-900c54404a9456b3ff10745e5e8f64b12c3a6ef7.tar.bz2
linux-3.10-900c54404a9456b3ff10745e5e8f64b12c3a6ef7.zip
[SCSI] hpsa: interrupt pending function should return bool not unsigned long
Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/hpsa.c')
-rw-r--r--drivers/scsi/hpsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c
index 82987e1850a..314854b455d 100644
--- a/drivers/scsi/hpsa.c
+++ b/drivers/scsi/hpsa.c
@@ -2693,7 +2693,7 @@ static inline unsigned long get_next_completion(struct ctlr_info *h)
return h->access.command_completed(h);
}
-static inline int interrupt_pending(struct ctlr_info *h)
+static inline bool interrupt_pending(struct ctlr_info *h)
{
return h->access.intr_pending(h);
}