diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2012-06-27 05:05:21 -0400 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2012-07-03 15:09:32 -0400 |
commit | 6734092e66011def7875bd67beef889d0fee1cc9 (patch) | |
tree | 0e7011bcb8f5ddd540d48937743a3e024e372ad7 /drivers/scsi/isci/phy.c | |
parent | 67787c330762eb884bf8c169fe942263d55ec162 (diff) |
isci: add a couple __iomem annotations
These are __iomem. Sparse complains if we don't have that.
drivers/scsi/isci/phy.c +149 70: warning:
incorrect type in initializer (different address spaces)
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/scsi/isci/phy.c')
-rw-r--r-- | drivers/scsi/isci/phy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/isci/phy.c b/drivers/scsi/isci/phy.c index ebb8f530f708..cb87b2ef7c92 100644 --- a/drivers/scsi/isci/phy.c +++ b/drivers/scsi/isci/phy.c | |||
@@ -169,7 +169,7 @@ sci_phy_link_layer_initialization(struct isci_phy *iphy, | |||
169 | phy_cap.gen1_no_ssc = 1; | 169 | phy_cap.gen1_no_ssc = 1; |
170 | if (ihost->oem_parameters.controller.do_enable_ssc) { | 170 | if (ihost->oem_parameters.controller.do_enable_ssc) { |
171 | struct scu_afe_registers __iomem *afe = &ihost->scu_registers->afe; | 171 | struct scu_afe_registers __iomem *afe = &ihost->scu_registers->afe; |
172 | struct scu_afe_transceiver *xcvr = &afe->scu_afe_xcvr[phy_idx]; | 172 | struct scu_afe_transceiver __iomem *xcvr = &afe->scu_afe_xcvr[phy_idx]; |
173 | struct isci_pci_info *pci_info = to_pci_info(ihost->pdev); | 173 | struct isci_pci_info *pci_info = to_pci_info(ihost->pdev); |
174 | bool en_sas = false; | 174 | bool en_sas = false; |
175 | bool en_sata = false; | 175 | bool en_sata = false; |