mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 1/2] block: Alias block_op_close() to block_op_flush()
@ 2019-01-12  5:58 Andrey Smirnov
  2019-01-12  5:58 ` [PATCH 2/2] block: Replace debug() with dev_dbg() Andrey Smirnov
  2019-01-16  7:29 ` [PATCH 1/2] block: Alias block_op_close() to block_op_flush() Sascha Hauer
  0 siblings, 2 replies; 3+ messages in thread
From: Andrey Smirnov @ 2019-01-12  5:58 UTC (permalink / raw)
  To: barebox; +Cc: Andrey Smirnov

The two functions are identical, so there's no need to keep two copies
of the same code around. Alias block_op_close() to block_op_flush()
and drop standalone definition for the former.

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
---
 common/block.c | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/common/block.c b/common/block.c
index 8d0de42d90..549df71a9d 100644
--- a/common/block.c
+++ b/common/block.c
@@ -329,13 +329,6 @@ static ssize_t block_op_write(struct cdev *cdev, const void *buf, size_t count,
 }
 #endif
 
-static int block_op_close(struct cdev *cdev)
-{
-	struct block_device *blk = cdev->priv;
-
-	return writebuffer_flush(blk);
-}
-
 static int block_op_flush(struct cdev *cdev)
 {
 	struct block_device *blk = cdev->priv;
@@ -343,6 +336,8 @@ static int block_op_flush(struct cdev *cdev)
 	return writebuffer_flush(blk);
 }
 
+static int block_op_close(struct cdev *cdev) __alias(block_op_flush);
+
 static struct cdev_operations block_ops = {
 	.read	= block_op_read,
 #ifdef CONFIG_BLOCK_WRITE
-- 
2.20.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-01-16  7:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-12  5:58 [PATCH 1/2] block: Alias block_op_close() to block_op_flush() Andrey Smirnov
2019-01-12  5:58 ` [PATCH 2/2] block: Replace debug() with dev_dbg() Andrey Smirnov
2019-01-16  7:29 ` [PATCH 1/2] block: Alias block_op_close() to block_op_flush() Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox