]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
block: make blk_create_device() static
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Fri, 18 Oct 2024 01:30:15 +0000 (03:30 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 24 Oct 2024 17:20:58 +0000 (11:20 -0600)
There are no users of the blk_create_device() function outside the uclass.
Let's make it static. This will ensure that new block drivers will use
blk_create_devicef().

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
drivers/block/blk-uclass.c
include/blk.h

index 312e038445c0253c58c12e0fb6d356efb3b00ef8..f3ac8db9464311acbc96f3358e0ef143471ca59d 100644 (file)
@@ -695,9 +695,22 @@ static int blk_claim_devnum(enum uclass_id uclass_id, int devnum)
        return -ENOENT;
 }
 
-int blk_create_device(struct udevice *parent, const char *drv_name,
-                     const char *name, int uclass_id, int devnum, int blksz,
-                     lbaint_t lba, struct udevice **devp)
+/**
+ * blk_create_device() - Create a new block device
+ *
+ * @parent:    Parent of the new device
+ * @drv_name:  Driver name to use for the block device
+ * @name:      Name for the device
+ * @uclass_id: Interface type (enum uclass_id_t)
+ * @devnum:    Device number, specific to the interface type, or -1 to
+ *             allocate the next available number
+ * @blksz:     Block size of the device in bytes (typically 512)
+ * @lba:       Total number of blocks of the device
+ * @devp:      the new device (which has not been probed)
+ */
+static int blk_create_device(struct udevice *parent, const char *drv_name,
+                            const char *name, int uclass_id, int devnum,
+                            int blksz, lbaint_t lba, struct udevice **devp)
 {
        struct blk_desc *desc;
        struct udevice *dev;
index eef6c8629e8bd8ff1dd7aa41f54ff80b67bfbd20..488d04cf32ad6efdf2a048141169924b949b81d1 100644 (file)
@@ -379,23 +379,6 @@ int blk_first_device(int uclass_id, struct udevice **devp);
  */
 int blk_next_device(struct udevice **devp);
 
-/**
- * blk_create_device() - Create a new block device
- *
- * @parent:    Parent of the new device
- * @drv_name:  Driver name to use for the block device
- * @name:      Name for the device
- * @uclass_id: Interface type (enum uclass_id_t)
- * @devnum:    Device number, specific to the interface type, or -1 to
- *             allocate the next available number
- * @blksz:     Block size of the device in bytes (typically 512)
- * @lba:       Total number of blocks of the device
- * @devp:      the new device (which has not been probed)
- */
-int blk_create_device(struct udevice *parent, const char *drv_name,
-                     const char *name, int uclass_id, int devnum, int blksz,
-                     lbaint_t lba, struct udevice **devp);
-
 /**
  * blk_create_devicef() - Create a new named block device
  *