X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/1d0ccbe04b6d04cc4e05aeb9bbcb7b7fa0cfdbd1..3c4061697950f897e195dd77b6e471ca462dd3fb:/common/protocols.c

diff --git a/common/protocols.c b/common/protocols.c
index ee8abadd..b8361204 100644
--- a/common/protocols.c
+++ b/common/protocols.c
@@ -1,4 +1,3 @@
-#include <strings.h>
 #include <string.h>
 #include <stdint.h>
 #include <stdarg.h>
@@ -7,24 +6,15 @@
 // ATA55xx shared presets & routines
 uint32_t GetT55xxClockBit(uint32_t clock) {
 	switch (clock) {
-		case 128:
-			return T55x7_BITRATE_RF_128;
-		case 100:
-			return T55x7_BITRATE_RF_100;
-		case 64:
-			return T55x7_BITRATE_RF_64;
-		case 50:
-			return T55x7_BITRATE_RF_50;
-		case 40:
-			return T55x7_BITRATE_RF_40;
-		case 32:
-			return T55x7_BITRATE_RF_32;
-		case 16:
-			return T55x7_BITRATE_RF_16;
-		case 8:
-			return T55x7_BITRATE_RF_8;
-		default:
-			return 0;
+		case 128: return T55x7_BITRATE_RF_128;
+		case 100: return T55x7_BITRATE_RF_100;
+		case  64: return T55x7_BITRATE_RF_64;
+		case  50: return T55x7_BITRATE_RF_50;
+		case  40: return T55x7_BITRATE_RF_40;
+		case  32: return T55x7_BITRATE_RF_32;
+		case  16: return T55x7_BITRATE_RF_16;
+		case   8: return T55x7_BITRATE_RF_8;
+		default : return 0;
 	}
 }