368167ede8
* Moved devfs from fs/ to device_manager/, and separated the legacy driver support from it. * Removed fast_log module. * There are a couple of (temporary) regressions, though: - legacy SATA and ISA IDE support is disabled, the drivers haven't been ported yet. - The not yet used ATA bus manager hasn't been ported yet, either. - AHCI changes have not been tested. - the listdev command has been removed from the build (as it currently doesn't work anymore). - device manager generated IDs currently are not freed anymore when a device node is removed. - generic drivers can't yet use the new driver architecture. - simple busses that do not support device types won't work yet. - legacy driver publishing/unpublishing (ie. what USB needs) has not been tested, and may be broken. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25662 a95241bf-73f2-0310-859d-f6bbb57e9c96
35 lines
927 B
C
35 lines
927 B
C
/*
|
|
* Copyright 2002-2008, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
* Distributed under the terms of the NewOS License.
|
|
*/
|
|
#ifndef _DEVFS_H
|
|
#define _DEVFS_H
|
|
|
|
|
|
#include <Drivers.h>
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
status_t devfs_unpublish_file_device(const char *path);
|
|
status_t devfs_publish_file_device(const char *path, const char *filePath);
|
|
|
|
status_t devfs_unpublish_partition(const char *path);
|
|
status_t devfs_publish_partition(const char *path, const partition_info *info);
|
|
|
|
status_t devfs_unpublish_device(const char *path, bool disconnect);
|
|
status_t devfs_publish_device(const char *path, device_hooks *calls);
|
|
status_t devfs_publish_directory(const char *path);
|
|
status_t devfs_rescan_driver(const char *driverName);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _DEVFS_H */
|