Removing extra debug
diff --git a/driver-ztex.c b/driver-ztex.c
index 8b8b0e4..bbfd9b1 100644
--- a/driver-ztex.c
+++ b/driver-ztex.c
@@ -41,7 +41,6 @@ static void ztex_selectFpga(struct libztex_device* ztex)
if (ztex->root->numberOfFpgas > 1) {
if (ztex->root->selectedFpga != ztex->fpgaNum)
mutex_lock(&ztex->root->mutex);
- applog(LOG_DEBUG, "%s:%d: locked", ztex->repr, ztex->fpgaNum);
libztex_selectFpga(ztex);
}
}
@@ -51,7 +50,6 @@ static void ztex_releaseFpga(struct libztex_device* ztex)
if (ztex->root->numberOfFpgas > 1) {
ztex->root->selectedFpga = -1;
mutex_unlock(&ztex->root->mutex);
- applog(LOG_DEBUG, "%s:%d: unlocked", ztex->repr, ztex->fpgaNum);
}
}