icE1usb fw: cosmetic: more comments in the code

Change-Id: I445bb2f92b6dcfe29ac20109ea2e63efb31051a1
diff --git a/firmware/ice40-riscv/icE1usb/usb_e1.c b/firmware/ice40-riscv/icE1usb/usb_e1.c
index dafceb5..f724665 100644
--- a/firmware/ice40-riscv/icE1usb/usb_e1.c
+++ b/firmware/ice40-riscv/icE1usb/usb_e1.c
@@ -16,9 +16,9 @@
 #include "misc.h"
 
 struct {
-	bool running;
-	int out_bdi;
-	int in_bdi;
+	bool running;		/* are we running (transceiving USB data)? */
+	int out_bdi;		/* buffer descriptor index for OUT EP */
+	int in_bdi;		/* buffer descriptor index for IN EP */
 } g_usb_e1;