mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 08:38:24 +08:00
hwspinlock/core: move the dereference below the NULL test
The dereference should be moved below the NULL test. spatch with a semantic match is used to found this. (http://coccinelle.lip6.fr/) Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
This commit is contained in:
parent
55d512e245
commit
e352614cd3
@ -552,7 +552,7 @@ EXPORT_SYMBOL_GPL(hwspin_lock_request_specific);
|
||||
*/
|
||||
int hwspin_lock_free(struct hwspinlock *hwlock)
|
||||
{
|
||||
struct device *dev = hwlock->bank->dev;
|
||||
struct device *dev;
|
||||
struct hwspinlock *tmp;
|
||||
int ret;
|
||||
|
||||
@ -561,6 +561,7 @@ int hwspin_lock_free(struct hwspinlock *hwlock)
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
dev = hwlock->bank->dev;
|
||||
mutex_lock(&hwspinlock_tree_lock);
|
||||
|
||||
/* make sure the hwspinlock is used */
|
||||
|
Loading…
Reference in New Issue
Block a user