summaryrefslogtreecommitdiff
path: root/lib/sysfs_utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sysfs_utils.c')
-rw-r--r--lib/sysfs_utils.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/sysfs_utils.c b/lib/sysfs_utils.c
index 9ca207c..6397342 100644
--- a/lib/sysfs_utils.c
+++ b/lib/sysfs_utils.c
@@ -224,20 +224,6 @@ struct dlist *sysfs_open_directory_list(const char *path)
}
/**
- * sysfs_open_link_list: gets a list of all links under "path"
- * @path: path to read
- * Returns a dlist of supported links or NULL no directories (errno is set
- * in case of error
- */
-struct dlist *sysfs_open_link_list(const char *path)
-{
- if (!path)
- return NULL;
-
- return (read_dir_links(path));
-}
-
-/**
* sysfs_path_is_dir: Check if the path supplied points to a directory
* @path: path to validate
* Returns 0 if path points to dir, 1 otherwise