Commit ec336cdeb20c9b27717fd7913a3af1a04d65b360

nelisky 2012-05-04T01:10:35

Removing extra debug

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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);
 	}
 }