diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2012-06-27 11:05:21 +0200 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2012-07-03 21:09:32 +0200 |
commit | 6734092e66011def7875bd67beef889d0fee1cc9 (patch) | |
tree | 0e7011bcb8f5ddd540d48937743a3e024e372ad7 /drivers/scsi/isci/host.c | |
parent | isci: make function declaration match implementation (diff) | |
download | linux-6734092e66011def7875bd67beef889d0fee1cc9.tar.xz linux-6734092e66011def7875bd67beef889d0fee1cc9.zip |
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/host.c')
-rw-r--r-- | drivers/scsi/isci/host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/isci/host.c b/drivers/scsi/isci/host.c index 45385f531649..b425ed523ccc 100644 --- a/drivers/scsi/isci/host.c +++ b/drivers/scsi/isci/host.c @@ -1973,7 +1973,7 @@ static void sci_controller_afe_initialization(struct isci_host *ihost) } for (phy_id = 0; phy_id < SCI_MAX_PHYS; phy_id++) { - struct scu_afe_transceiver *xcvr = &afe->scu_afe_xcvr[phy_id]; + struct scu_afe_transceiver __iomem *xcvr = &afe->scu_afe_xcvr[phy_id]; const struct sci_phy_oem_params *oem_phy = &oem->phys[phy_id]; int cable_length_long = is_long_cable(phy_id, cable_selection_mask); |