Skip to content

Commit

Permalink
[SERIAL] Update ibmasm driver for death of register_serial&co
Browse files Browse the repository at this point in the history
Signed-off-by: Max Asbock <masbock@us.ibm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Max Asbock authored and Russell King committed Sep 7, 2005
1 parent 1cd9855 commit 66172d2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion drivers/misc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ menu "Misc devices"

config IBM_ASM
tristate "Device driver for IBM RSA service processor"
depends on X86 && PCI && EXPERIMENTAL && BROKEN
depends on X86 && PCI && EXPERIMENTAL
---help---
This option enables device driver support for in-band access to the
IBM RSA (Condor) service processor in eServer xSeries systems.
Expand Down
20 changes: 10 additions & 10 deletions drivers/misc/ibmasm/uart.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@
#include <linux/termios.h>
#include <linux/tty.h>
#include <linux/serial_core.h>
#include <linux/serial.h>
#include <linux/serial_reg.h>
#include <linux/serial_8250.h>
#include "ibmasm.h"
#include "lowlevel.h"


void ibmasm_register_uart(struct service_processor *sp)
{
struct serial_struct serial;
struct uart_port uport;
void __iomem *iomem_base;

iomem_base = sp->base_address + SCOUT_COM_B_BASE;
Expand All @@ -47,14 +47,14 @@ void ibmasm_register_uart(struct service_processor *sp)
return;
}

memset(&serial, 0, sizeof(serial));
serial.irq = sp->irq;
serial.baud_base = 3686400 / 16;
serial.flags = UPF_AUTOPROBE | UPF_SHARE_IRQ;
serial.io_type = UPIO_MEM;
serial.iomem_base = iomem_base;
memset(&uport, 0, sizeof(struct uart_port));
uport.irq = sp->irq;
uport.uartclk = 3686400;
uport.flags = UPF_AUTOPROBE | UPF_SHARE_IRQ;
uport.iotype = UPIO_MEM;
uport.membase = iomem_base;

sp->serial_line = register_serial(&serial);
sp->serial_line = serial8250_register_port(&uport);
if (sp->serial_line < 0) {
dev_err(sp->dev, "Failed to register serial port\n");
return;
Expand All @@ -68,5 +68,5 @@ void ibmasm_unregister_uart(struct service_processor *sp)
return;

disable_uart_interrupts(sp->base_address);
unregister_serial(sp->serial_line);
serial8250_unregister_port(sp->serial_line);
}

0 comments on commit 66172d2

Please sign in to comment.