[PATCH 6/9] cdev: add device_find_partition
Sascha Hauer
s.hauer at pengutronix.de
Wed Jul 10 06:52:05 EDT 2013
device_find_partition allows to find a partition of a device with
a particular name.
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
fs/devfs-core.c | 27 +++++++++++++++++++++++++++
include/driver.h | 1 +
2 files changed, 28 insertions(+)
diff --git a/fs/devfs-core.c b/fs/devfs-core.c
index 816f244..a92d434 100644
--- a/fs/devfs-core.c
+++ b/fs/devfs-core.c
@@ -56,6 +56,33 @@ struct cdev *cdev_by_name(const char *filename)
return NULL;
}
+/**
+ * device_find_partition - find a partition belonging to a physical device
+ *
+ * @dev: the device which should be searched for partitions
+ * @name: the partition name
+ */
+struct cdev *device_find_partition(struct device_d *dev, const char *name)
+{
+ struct cdev *cdev;
+ struct device_d *child;
+
+ list_for_each_entry(cdev, &dev->cdevs, devices_list) {
+ if (!cdev->partname)
+ continue;
+ if (!strcmp(cdev->partname, name))
+ return cdev;
+ }
+
+ device_for_each_child(dev, child) {
+ cdev = device_find_partition(child, name);
+ if (cdev)
+ return cdev;
+ }
+
+ return NULL;
+}
+
int cdev_find_free_index(const char *basename)
{
int i;
diff --git a/include/driver.h b/include/driver.h
index 7ac2eef..f95c93c 100644
--- a/include/driver.h
+++ b/include/driver.h
@@ -458,6 +458,7 @@ struct cdev {
int devfs_create(struct cdev *);
int devfs_remove(struct cdev *);
int cdev_find_free_index(const char *);
+struct cdev *device_find_partition(struct device_d *dev, const char *name);
struct cdev *cdev_by_name(const char *filename);
struct cdev *cdev_open(const char *name, unsigned long flags);
int cdev_do_open(struct cdev *, unsigned long flags);
--
1.8.3.2
More information about the barebox
mailing list