diff mbox

[18/21] lpfc: Correct issue with ioremap() call on 32bit kernel

Message ID 577d5dab.uTZuS8TRN82d5m1T%james.smart@broadcom.com (mailing list archive)
State Accepted, archived
Headers show

Commit Message

James Smart July 6, 2016, 7:36 p.m. UTC
Correct issue with ioremap() call on 32bit kernel

Signed-off-by: Dick Kennedy <dick.kennedy@broadcom.com>
Signed-off-by: James Smart <james.smart@broadcom.com>
---
 drivers/scsi/lpfc/lpfc.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Hannes Reinecke July 15, 2016, 1:22 p.m. UTC | #1
On 07/06/2016 09:36 PM, James Smart wrote:
> 
> Correct issue with ioremap() call on 32bit kernel
> 
> Signed-off-by: Dick Kennedy <dick.kennedy@broadcom.com>
> Signed-off-by: James Smart <james.smart@broadcom.com>
> ---
>  drivers/scsi/lpfc/lpfc.h | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/scsi/lpfc/lpfc.h b/drivers/scsi/lpfc/lpfc.h
> index 4d9f1b1..b484859 100644
> --- a/drivers/scsi/lpfc/lpfc.h
> +++ b/drivers/scsi/lpfc/lpfc.h
> @@ -785,9 +785,9 @@ struct lpfc_hba {
>  
>  	atomic_t fcp_qidx;		/* next work queue to post work to */
>  
> -	unsigned long pci_bar0_map;     /* Physical address for PCI BAR0 */
> -	unsigned long pci_bar1_map;     /* Physical address for PCI BAR1 */
> -	unsigned long pci_bar2_map;     /* Physical address for PCI BAR2 */
> +	phys_addr_t pci_bar0_map;     /* Physical address for PCI BAR0 */
> +	phys_addr_t pci_bar1_map;     /* Physical address for PCI BAR1 */
> +	phys_addr_t pci_bar2_map;     /* Physical address for PCI BAR2 */
>  	void __iomem *slim_memmap_p;	/* Kernel memory mapped address for
>  					   PCI BAR0 */
>  	void __iomem *ctrl_regs_memmap_p;/* Kernel memory mapped address for
> 
Reviewed-by: Hannes Reinecke <hare@suse.com>

Cheers,

Hannes
diff mbox

Patch

diff --git a/drivers/scsi/lpfc/lpfc.h b/drivers/scsi/lpfc/lpfc.h
index 4d9f1b1..b484859 100644
--- a/drivers/scsi/lpfc/lpfc.h
+++ b/drivers/scsi/lpfc/lpfc.h
@@ -785,9 +785,9 @@  struct lpfc_hba {
 
 	atomic_t fcp_qidx;		/* next work queue to post work to */
 
-	unsigned long pci_bar0_map;     /* Physical address for PCI BAR0 */
-	unsigned long pci_bar1_map;     /* Physical address for PCI BAR1 */
-	unsigned long pci_bar2_map;     /* Physical address for PCI BAR2 */
+	phys_addr_t pci_bar0_map;     /* Physical address for PCI BAR0 */
+	phys_addr_t pci_bar1_map;     /* Physical address for PCI BAR1 */
+	phys_addr_t pci_bar2_map;     /* Physical address for PCI BAR2 */
 	void __iomem *slim_memmap_p;	/* Kernel memory mapped address for
 					   PCI BAR0 */
 	void __iomem *ctrl_regs_memmap_p;/* Kernel memory mapped address for