Skip to content

Commit

Permalink
ACPI / APEI: adjust a local variable type in ghes_ioremap_pfn_irq()
Browse files Browse the repository at this point in the history
Match up with what 7edda08 ("acpi: apei: handle SEA notification
type for ARMv8") did for ghes_ioremap_pfn_nmi().

Signed-off-by: Jan Beulich <[email protected]>
Reviewed-by: Borislav Petkov <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
  • Loading branch information
jbeulich authored and rafaeljw committed Oct 10, 2017
1 parent 8a5776a commit 095f613
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/acpi/apei/ghes.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ static void __iomem *ghes_ioremap_pfn_nmi(u64 pfn)

static void __iomem *ghes_ioremap_pfn_irq(u64 pfn)
{
unsigned long vaddr, paddr;
unsigned long vaddr;
phys_addr_t paddr;
pgprot_t prot;

vaddr = (unsigned long)GHES_IOREMAP_IRQ_PAGE(ghes_ioremap_area->addr);
Expand Down

0 comments on commit 095f613

Please sign in to comment.