Commit 7578ca92 authored by Axel Lin's avatar Axel Lin Committed by Artem Bityutskiy

mtd: mtdblock: Use DEFINE_MUTEX() for mtdblks_lock

mtdblks_lock can be initialized automatically with
DEFINE_MUTEX() rather than explicitly calling mutex_init().
Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
parent 82e023ab
...@@ -44,7 +44,7 @@ struct mtdblk_dev { ...@@ -44,7 +44,7 @@ struct mtdblk_dev {
enum { STATE_EMPTY, STATE_CLEAN, STATE_DIRTY } cache_state; enum { STATE_EMPTY, STATE_CLEAN, STATE_DIRTY } cache_state;
}; };
static struct mutex mtdblks_lock; static DEFINE_MUTEX(mtdblks_lock);
/* /*
* Cache stuff... * Cache stuff...
...@@ -389,8 +389,6 @@ static struct mtd_blktrans_ops mtdblock_tr = { ...@@ -389,8 +389,6 @@ static struct mtd_blktrans_ops mtdblock_tr = {
static int __init init_mtdblock(void) static int __init init_mtdblock(void)
{ {
mutex_init(&mtdblks_lock);
return register_mtd_blktrans(&mtdblock_tr); return register_mtd_blktrans(&mtdblock_tr);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment