1 // SPDX-License-Identifier: GPL-2.0
3 * Written by Paul B Schroeder < pschroeder "at" uplogix "dot" com >
6 * Copyright (C) 2005 Russell King.
7 * Data taken from include/asm-i386/serial.h
9 #include <linux/module.h>
10 #include <linux/init.h>
11 #include <linux/serial_8250.h>
15 static struct plat_serial8250_port exar_data
[] = {
16 SERIAL8250_PORT(0x100, 5),
17 SERIAL8250_PORT(0x108, 5),
18 SERIAL8250_PORT(0x110, 5),
19 SERIAL8250_PORT(0x118, 5),
23 static struct platform_device exar_device
= {
25 .id
= PLAT8250_DEV_EXAR_ST16C554
,
27 .platform_data
= exar_data
,
31 static int __init
exar_init(void)
33 return platform_device_register(&exar_device
);
36 module_init(exar_init
);
38 MODULE_AUTHOR("Paul B Schroeder");
39 MODULE_DESCRIPTION("8250 serial probe module for Exar cards");
40 MODULE_LICENSE("GPL");