VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   34 Branches   58 Tags
author: Zheng Yongjun <zhengyongjun3@huawei.com> 2020-12-23 22:14:59 +0800 committer: Li Yang <leoyang.li@nxp.com> 2021-04-06 15:24:43 -0500 commit: 7374a3e572fe90c89aa1fa78ced424822bcba663 parent: f22c8d317a465c0040e5d1d334c72fe36a6ae9d9
Commit Summary:
soc: fsl: qe: Use DEFINE_SPINLOCK() for spinlock
Diffstat:
1 file changed, 1 insertion, 2 deletions
diff --git a/drivers/soc/fsl/qe/qe_common.c b/drivers/soc/fsl/qe/qe_common.c
index 654e9246ce6b..a0cb8e746879 100644
--- a/drivers/soc/fsl/qe/qe_common.c
+++ b/drivers/soc/fsl/qe/qe_common.c
@@ -26,7 +26,7 @@
 #include <soc/fsl/qe/qe.h>
 
 static struct gen_pool *muram_pool;
-static spinlock_t cpm_muram_lock;
+static DEFINE_SPINLOCK(cpm_muram_lock);
 static void __iomem *muram_vbase;
 static phys_addr_t muram_pbase;
 
@@ -54,7 +54,6 @@ int cpm_muram_init(void)
 	if (muram_pbase)
 		return 0;
 
-	spin_lock_init(&cpm_muram_lock);
 	np = of_find_compatible_node(NULL, NULL, "fsl,cpm-muram-data");
 	if (!np) {
 		/* try legacy bindings */