xref: /haiku/headers/private/kernel/boot/platform/bios_ia32/bios_drive.h (revision b193fcc7165ddd6fef10e48c8b19a4b23e7908d5)
1*b193fcc7SAxel Dörfler /*
2*b193fcc7SAxel Dörfler  * Copyright 2004, Axel Dörfler, axeld@pinc-software.de.
3*b193fcc7SAxel Dörfler  * Distributed under the terms of the MIT License.
4*b193fcc7SAxel Dörfler  */
5*b193fcc7SAxel Dörfler #ifndef KERNEL_BOOT_PLATFORM_BIOS_IA32_BIOS_DRIVE_H
6*b193fcc7SAxel Dörfler #define KERNEL_BOOT_PLATFORM_BIOS_IA32_BIOS_DRIVE_H
7*b193fcc7SAxel Dörfler 
8*b193fcc7SAxel Dörfler 
9*b193fcc7SAxel Dörfler #include <boot/disk_identifier.h>
10*b193fcc7SAxel Dörfler 
11*b193fcc7SAxel Dörfler 
12*b193fcc7SAxel Dörfler typedef struct bios_drive {
13*b193fcc7SAxel Dörfler 	struct bios_drive	*next;
14*b193fcc7SAxel Dörfler 	uint16				drive_number;
15*b193fcc7SAxel Dörfler 	disk_identifier		identifier;
16*b193fcc7SAxel Dörfler } bios_drive;
17*b193fcc7SAxel Dörfler 
18*b193fcc7SAxel Dörfler #endif	/* KERNEL_BOOT_PLATFORM_BIOS_IA32_BIOS_DRIVE_H */
19