From aafb11ae922592eb3ec46e2e84a76c34d18e68fc Mon Sep 17 00:00:00 2001 From: Lorenz Meier Date: Sun, 25 Oct 2015 14:52:17 +0100 Subject: [PATCH] VDev: Less verbose in header --- src/drivers/device/vdev.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/drivers/device/vdev.h b/src/drivers/device/vdev.h index 419c92e456..b15fd8209f 100644 --- a/src/drivers/device/vdev.h +++ b/src/drivers/device/vdev.h @@ -181,7 +181,7 @@ protected: */ void lock() { - DEVICE_DEBUG("lock"); + //DEVICE_DEBUG("lock"); do {} while (px4_sem_wait(&_lock) != 0); } @@ -190,7 +190,7 @@ protected: */ void unlock() { - DEVICE_DEBUG("unlock"); + //DEVICE_DEBUG("unlock"); px4_sem_post(&_lock); }