diff options
author | Stephen M. Cameron <scameron@beardog.cce.hp.com> | 2010-02-04 08:41:33 -0600 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2010-02-17 13:17:00 -0600 |
commit | 01a02ffcd55b74e3459bb7358140970e126d4731 (patch) | |
tree | cc533e13052c960f31250c35a5660eeae75b6bce /drivers/scsi/hpsa.h | |
parent | 466dc22409b97343c6b2168094d5f867093a70c2 (diff) |
[SCSI] hpsa: Use kernel integer types, not userland ones
That is, use u64, u32, u16 and u8 rather than __u64, __u32, __u16 and __u8.
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.h')
-rw-r--r-- | drivers/scsi/hpsa.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/hpsa.h b/drivers/scsi/hpsa.h index 6bd1949144b..194968e861c 100644 --- a/drivers/scsi/hpsa.h +++ b/drivers/scsi/hpsa.h @@ -55,7 +55,7 @@ struct ctlr_info { char *product_name; char firm_ver[4]; /* Firmware version */ struct pci_dev *pdev; - __u32 board_id; + u32 board_id; void __iomem *vaddr; unsigned long paddr; int nr_cmds; /* Number of commands allowed on this controller */ @@ -261,7 +261,7 @@ static struct access_method SA5_access = { }; struct board_type { - __u32 board_id; + u32 board_id; char *product_name; struct access_method *access; }; |