Commit 36edbcab authored by Bjorn Helgaas's avatar Bjorn Helgaas Committed by Linus Torvalds

[PATCH] PCDP: call acpi_register_gsi() with arguments in correct order

PCDP: call acpi_register_gsi() with arguments in correct order
Signed-off-by: default avatarBjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 2b716f98
......@@ -98,8 +98,8 @@ setup_serial_console(int rev, struct pcdp_uart *uart)
if (uart_irq_supported(rev, uart)) {
port.irq = acpi_register_gsi(uart->gsi,
uart_active_high_low(rev, uart),
uart_edge_level(rev, uart));
uart_edge_level(rev, uart),
uart_active_high_low(rev, uart));
port.flags |= UPF_AUTO_IRQ; /* some FW reported wrong GSI */
if (uart_pci(rev, uart))
port.flags |= UPF_SHARE_IRQ;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment