[PATCH 2/6] driver.h: move devfs_add/del_partition later in file
Ahmad Fatoum
a.fatoum at pengutronix.de
Wed Jan 3 02:16:25 PST 2024
This groups the function with similar functions and prepares adding
variants that take a struct devfs_partition argument, as that's only
defined later.
Signed-off-by: Ahmad Fatoum <a.fatoum at pengutronix.de>
---
include/driver.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/include/driver.h b/include/driver.h
index a0234fb6c31b..0e3d5635e4c1 100644
--- a/include/driver.h
+++ b/include/driver.h
@@ -631,10 +631,6 @@ cdev_find_child_by_gpt_typeuuid(struct cdev *cdev, guid_t *typeuuid)
return ERR_PTR(-ENOENT);
}
-struct cdev *devfs_add_partition(const char *devname, loff_t offset,
- loff_t size, unsigned int flags, const char *name);
-int devfs_del_partition(const char *name);
-
#ifdef CONFIG_FS_AUTOMOUNT
void cdev_create_default_automount(struct cdev *cdev);
#else
@@ -681,6 +677,10 @@ struct devfs_partition {
int devfs_create_partitions(const char *devname,
const struct devfs_partition partinfo[]);
+struct cdev *devfs_add_partition(const char *devname, loff_t offset,
+ loff_t size, unsigned int flags, const char *name);
+int devfs_del_partition(const char *name);
+
#define of_match_ptr(compat) \
IS_ENABLED(CONFIG_OFDEVICE) ? (compat) : NULL
--
2.39.2
More information about the barebox
mailing list