Diff between 65826f2b687bc8544cb9efde34495771c62de63e and 13cb68651497f1fb4f56134239b5c08c61686a9d

Changed Files

File Additions Deletions Status
tools/parser/hidp.c +2 -2 modified

Full Patch

diff --git a/tools/parser/hidp.c b/tools/parser/hidp.c
index 1dcf43e..feeb33f 100644
--- a/tools/parser/hidp.c
+++ b/tools/parser/hidp.c
@@ -125,9 +125,9 @@ static char *protocol2str(uint8_t head)
 {
 	switch (head & 0x01) {
 	case 0x00:
-		return "Report protocol";
-	case 0x01:
 		return "Boot protocol";
+	case 0x01:
+		return "Report protocol";
 	default:
 		return "Reserved";
 	}