1/*
2 * Copyright 2002/03, Thomas Kurschel. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5
6/*!	Contains interface used by IDE controller driver. */
7
8#include "ide_internal.h"
9#include "ide_sim.h"
10
11
12device_manager_info *pnp;
13
14
15#if !_BUILDING_kernel && !BOOT
16module_info *modules[] = {
17	(module_info *)&ide_for_controller_module,
18	(module_info *)&ide_sim_module,
19	NULL
20};
21#endif
22