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
This commit is contained in:
Axel Dörfler 2004-10-27 01:02:05 +00:00
parent 628e5a0374
commit f2ea9af307
1 changed files with 3 additions and 3 deletions

View File

@ -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 */