[PATCH] bcache: Fix compiler warnings

From: Marilene A Garcia
Date: Tue Jun 04 2024 - 23:42:05 EST


It fixes the following compiler warnings by
using "/*" instead of "/**" in the comments

drivers/md/bcache/request.c:309: warning:
Function parameter or struct member 'bch_data_insert'
not described in 'CLOSURE_CALLBACK'

drivers/md/bcache/request.c:309: warning: expecting
prototype for bch_data_insert(). Prototype was for
CLOSURE_CALLBACK() instead

Signed-off-by: Marilene A Garcia <marilene.agarcia@xxxxxxxxx>
---
Hello,
These warnings happen using GCC compiler the command 'make W=1'.

Thank you.

drivers/md/bcache/request.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/md/bcache/request.c b/drivers/md/bcache/request.c
index af345dc6fde1..457b9605aff9 100644
--- a/drivers/md/bcache/request.c
+++ b/drivers/md/bcache/request.c
@@ -285,7 +285,7 @@ static CLOSURE_CALLBACK(bch_data_insert_start)
}
}

-/**
+/*
* bch_data_insert - stick some data in the cache
* @cl: closure pointer.
*
--
2.34.1