2 * linux/drivers/serial/8250_exar.c
4 * Written by Paul B Schroeder < pschroeder "at" uplogix "dot" com >
7 * Copyright (C) 2005 Russell King.
8 * Data taken from include/asm-i386/serial.h
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/serial_8250.h>
18 #define PORT(_base,_irq) \
23 .iotype = UPIO_PORT, \
24 .flags = UPF_BOOT_AUTOCONF, \
27 static struct plat_serial8250_port exar_data[] = {
35 static struct platform_device exar_device = {
37 .id = PLAT8250_DEV_EXAR_ST16C554,
39 .platform_data = exar_data,
43 static int __init exar_init(void)
45 return platform_device_register(&exar_device);
48 module_init(exar_init);
50 MODULE_AUTHOR("Paul B Schroeder");
51 MODULE_DESCRIPTION("8250 serial probe module for Exar cards");
52 MODULE_LICENSE("GPL");