[PATCH 04/15] blk: host_dev: Make host_sb_detach_file() and host_sb_ops static
Bin Meng
bmeng at tinylab.org
Tue Sep 26 10:43:34 CEST 2023
They are only used in drivers/block/host_dev.c.
Signed-off-by: Bin Meng <bmeng at tinylab.org>
---
drivers/block/host_dev.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/block/host_dev.c b/drivers/block/host_dev.c
index 31c7814054..0b43f80a86 100644
--- a/drivers/block/host_dev.c
+++ b/drivers/block/host_dev.c
@@ -73,7 +73,7 @@ err_fname:
return ret;
}
-int host_sb_detach_file(struct udevice *dev)
+static int host_sb_detach_file(struct udevice *dev)
{
struct host_sb_plat *plat = dev_get_plat(dev);
int ret;
@@ -123,7 +123,7 @@ static int host_sb_bind(struct udevice *dev)
return 0;
}
-struct host_ops host_sb_ops = {
+static struct host_ops host_sb_ops = {
.attach_file = host_sb_attach_file,
.detach_file = host_sb_detach_file,
};
--
2.25.1
More information about the U-Boot
mailing list