Skip to content

Commit 095f613

Browse files
jbeulichrafaeljw
authored andcommitted
ACPI / APEI: adjust a local variable type in ghes_ioremap_pfn_irq()
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]>
1 parent 8a5776a commit 095f613

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/acpi/apei/ghes.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,8 @@ static void __iomem *ghes_ioremap_pfn_nmi(u64 pfn)
174174

175175
static void __iomem *ghes_ioremap_pfn_irq(u64 pfn)
176176
{
177-
unsigned long vaddr, paddr;
177+
unsigned long vaddr;
178+
phys_addr_t paddr;
178179
pgprot_t prot;
179180

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

0 commit comments

Comments
 (0)