diff --git a/headers/private/kernel/fs/devfs.h b/headers/private/kernel/fs/devfs.h index 44db6e7efb..0cd450788f 100644 --- a/headers/private/kernel/fs/devfs.h +++ b/headers/private/kernel/fs/devfs.h @@ -16,18 +16,18 @@ 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_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 *name, const partition_info *info); -status_t devfs_rename_partition(const char *devicePath, const char *oldName, - const char *newName); +status_t devfs_unpublish_partition(const char* path); +status_t devfs_publish_partition(const char* name, const partition_info* info); +status_t devfs_rename_partition(const char* devicePath, const char* oldName, + const char* newName); -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); +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); void devfs_compute_geometry_size(device_geometry* geometry, uint64 blockCount, uint32 blockSize);