2 * linux/arch/arm/mach-footbridge/isa.c
4 * Copyright (C) 2004 Russell King.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 #include <linux/init.h>
11 #include <linux/serial_8250.h>
15 static struct plat_serial8250_port serial_platform_data[] = {
22 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
30 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
35 static struct platform_device serial_device = {
37 .id = PLAT8250_DEV_PLATFORM,
39 .platform_data = serial_platform_data,
43 static int __init footbridge_isa_init(void)
45 return platform_device_register(&serial_device);
48 arch_initcall(footbridge_isa_init);