]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
zd1211rw: remove false assertion from zd_mac_clear()
authorOliver Neukum <oneukum@suse.com>
Tue, 13 Aug 2019 12:04:11 +0000 (14:04 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 5 Oct 2019 11:13:59 +0000 (13:13 +0200)
[ Upstream commit 7a2eb7367fdea72e448d1a847aa857f6caf8ea2f ]

The function is called before the lock which is asserted was ever used.
Just remove it.

Reported-by: syzbot+74c65761783d66a9c97c@syzkaller.appspotmail.com
Signed-off-by: Oliver Neukum <oneukum@suse.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/wireless/zydas/zd1211rw/zd_mac.c

index da7e63fca9f5768d02b1eeaec968f7e332397c9f..a9999d10ae81f4806c36fcbaee417027ecc03afe 100644 (file)
@@ -223,7 +223,6 @@ void zd_mac_clear(struct zd_mac *mac)
 {
        flush_workqueue(zd_workqueue);
        zd_chip_clear(&mac->chip);
-       lockdep_assert_held(&mac->lock);
        ZD_MEMCLEAR(mac, sizeof(struct zd_mac));
 }