From f2ea9af307e2a96df8e58bf811cd8f1e8c5ec9d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 27 Oct 2004 01:02:05 +0000 Subject: [PATCH] The boot loader now can tell the x86 serial driver the serial port base addresses as reported by the BIOS. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9526 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../kernel/boot/platform/bios_ia32/platform_kernel_args.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/headers/private/kernel/boot/platform/bios_ia32/platform_kernel_args.h b/headers/private/kernel/boot/platform/bios_ia32/platform_kernel_args.h index 7a67509575..fdd026cfff 100644 --- a/headers/private/kernel/boot/platform/bios_ia32/platform_kernel_args.h +++ b/headers/private/kernel/boot/platform/bios_ia32/platform_kernel_args.h @@ -1,6 +1,6 @@ /* ** Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. -** Distributed under the terms of the OpenBeOS License. +** Distributed under the terms of the Haiku License. */ #ifndef KERNEL_BOOT_PLATFORM_BIOS_IA32_KERNEL_ARGS_H #define KERNEL_BOOT_PLATFORM_BIOS_IA32_KERNEL_ARGS_H @@ -15,10 +15,10 @@ #define MAX_PHYSICAL_ALLOCATED_RANGE 4 #define MAX_VIRTUAL_ALLOCATED_RANGE 4 +#define MAX_SERIAL_PORTS 4 typedef struct { - int32 _dummy; - // structure sizes differ if this would be empty (kernel vs. boot loader) + uint16 serial_base_ports[MAX_SERIAL_PORTS]; } platform_kernel_args; #endif /* KERNEL_BOOT_PLATFORM_BIOS_IA32_KERNEL_ARGS_H */