1/*
2 * Copyright 2005, Axel D��rfler, axeld@pinc-software.de. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _KERNEL_DRIVER_SETTINGS_H
6#define _KERNEL_DRIVER_SETTINGS_H
7
8
9#include <SupportDefs.h>
10
11struct kernel_args;
12
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
18status_t driver_settings_init(struct kernel_args *args);
19
20#ifdef __cplusplus
21}
22#endif
23
24#endif	/* _KRENEL_DRIVER_SETTINGS_H */
25