Removed some unnecessary includes, added Marcus as author of this file.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10032 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2004-11-19 19:26:39 +00:00
parent 5067c6cfef
commit affaac6cca
@@ -1,20 +1,20 @@
/* Config Manager /* Config Manager
** provides access to device configurations * provides access to device configurations
** *
** Distributed under the terms of the OpenBeOS License. * Copyright 2002-2004, Marcus Overhagen, [email protected]e.
* Distributed under the terms of the MIT License.
*/ */
#include <ktypes.h>
#include <config_manager.h> #include <config_manager.h>
#include <PCI.h> #include <PCI.h>
#include <ISA.h> #include <ISA.h>
#include <bus_manager.h> #include <bus_manager.h>
#include <errno.h>
#include <debug.h>
#include <string.h> #include <string.h>
#include <memheap.h> #include <memheap.h>
#include <KernelExport.h> #include <KernelExport.h>
static pci_module_info *gPCI = NULL; static pci_module_info *gPCI = NULL;
#define B_CONFIG_MANAGER_FOR_BUS_MODULE_NAME "bus_managers/config_manager/bus/v1" #define B_CONFIG_MANAGER_FOR_BUS_MODULE_NAME "bus_managers/config_manager/bus/v1"
@@ -23,7 +23,6 @@ static pci_module_info *gPCI = NULL;
#define TRACE(x) dprintf x #define TRACE(x) dprintf x
// #pragma mark -
// Driver module API // Driver module API