serial: core: Fix port mutex assert if lockdep disabled
authorPeter Hurley <peter@hurleysoftware.com>
Tue, 3 May 2016 21:01:51 +0000 (14:01 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 4 May 2016 00:53:20 +0000 (17:53 -0700)
commit7da4b8b7378790dd1e4af1bb7522863127fa1438
treea541a0973b6a7699f0df6749d028a8760560564f
parent6550be9f62bfc4dacbdbd8cb7afe0df661da77bf
serial: core: Fix port mutex assert if lockdep disabled

commit 4047b37122d1 ("serial: core: Prevent unsafe uart port access,
part 1") added lockdep assertion for port mutex but fails to check
if debug_locks has disabled lockdep (so lock state is no longer
reliable).

Use lockdep_assert_held() instead, which properly checks lockdep
state as well.

Reported-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Tested-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/serial_core.c