>-----Original Message-----
>From: Christoph Hellwig [mailto:h...@lst.de]
>Sent: Saturday, January 10, 2015 10:41 PM
>To: sumit.sax...@avagotech.com; kashyap.de...@avagotech.com
>Cc: martin.peter...@oracle.com; linux-scsi@vger.kernel.org
>Subject: [PATCH 02/10] megaraid_sas: add missing __iomem annotations
>
>Signed-off-by: Christoph Hellwig <h...@lst.de>
>---
> drivers/scsi/megaraid/megaraid_sas.h      | 2 +-
> drivers/scsi/megaraid/megaraid_sas_base.c | 9 +++++----
> 2 files changed, 6 insertions(+), 5 deletions(-)
>
>diff --git a/drivers/scsi/megaraid/megaraid_sas.h
>b/drivers/scsi/megaraid/megaraid_sas.h
>index 14e5c7c..ecc4321 100644
>--- a/drivers/scsi/megaraid/megaraid_sas.h
>+++ b/drivers/scsi/megaraid/megaraid_sas.h
>@@ -1681,7 +1681,7 @@ struct megasas_instance {
>       spinlock_t crashdump_lock;
>
>       struct megasas_register_set __iomem *reg_set;
>-      u32 *reply_post_host_index_addr[MR_MAX_MSIX_REG_ARRAY];
>+      u32 __iomem
>*reply_post_host_index_addr[MR_MAX_MSIX_REG_ARRAY];
>       struct megasas_pd_list          pd_list[MEGASAS_MAX_PD];
>       struct megasas_pd_list          local_pd_list[MEGASAS_MAX_PD];
>       u8 ld_ids[MEGASAS_MAX_LD_IDS];
>diff --git a/drivers/scsi/megaraid/megaraid_sas_base.c
>b/drivers/scsi/megaraid/megaraid_sas_base.c
>index 2eb5233..875db92 100644
>--- a/drivers/scsi/megaraid/megaraid_sas_base.c
>+++ b/drivers/scsi/megaraid/megaraid_sas_base.c
>@@ -814,8 +814,8 @@ megasas_adp_reset_gen2(struct megasas_instance
>*instance,  {
>       u32                     retry = 0 ;
>       u32                     HostDiag;
>-      u32                     *seq_offset = &reg_set->seq_offset;
>-      u32                     *hostdiag_offset = &reg_set->host_diag;
>+      u32 __iomem             *seq_offset = &reg_set->seq_offset;
>+      u32 __iomem             *hostdiag_offset = &reg_set->host_diag;
>
>       if (instance->instancet == &megasas_instance_template_skinny) {
>               seq_offset = &reg_set->fusion_seq_offset; @@ -4499,7
>+4499,7 @@ static int megasas_init_fw(struct megasas_instance *instance)
>        * It is used for all MPT based Adapters.
>        */
>       instance->reply_post_host_index_addr[0] =
>-              (u32 *)((u8 *)instance->reg_set +
>+              (u32 __iomem *)((u8 __iomem *)instance->reg_set +
>               MPI2_REPLY_POST_HOST_INDEX_OFFSET);
>
>       /* Check if MSI-X is supported while in ready state */ @@ -4531,7
>+4531,8 @@ static int megasas_init_fw(struct megasas_instance *instance)
>                        */
>                       for (loop = 1; loop < MR_MAX_MSIX_REG_ARRAY;
>loop++) {
>                               instance->reply_post_host_index_addr[loop]
>=
>-                                      (u32 *)((u8 *)instance->reg_set +
>+                                      (u32 __iomem *)
>+                                      ((u8 __iomem*)instance->reg_set +
>
>       MPI2_SUP_REPLY_POST_HOST_INDEX_OFFSET
>                                       + (loop * 0x10));
>                       }
Acked-by: Sumit Saxena <sumit.sax...@avagotech.com>

>--
>1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to