mroe comments on meas_rep data structures
diff --git a/openbsc/include/openbsc/meas_rep.h b/openbsc/include/openbsc/meas_rep.h
index d44c9b7..c36352e 100644
--- a/openbsc/include/openbsc/meas_rep.h
+++ b/openbsc/include/openbsc/meas_rep.h
@@ -30,11 +30,15 @@
 
 /* parsed uplink and downlink measurement result */
 struct gsm_meas_rep {
+	/* back-pointer to the logical channel */
 	struct gsm_lchan *lchan;
 
+	/* number of the measurement report */
 	u_int8_t nr;
+	/* flags, see MEAS_REP_F_* */
 	unsigned int flags;
 
+	/* uplink and downlink rxlev, rxqual; full and sub */
 	struct gsm_meas_rep_unidir ul;
 	struct gsm_meas_rep_unidir dl;
 
@@ -45,6 +49,7 @@
 		u_int8_t ta;	/* MS timing advance */
 	} ms_l1;
 
+	/* neighbor measurement reports for up to 6 cells */
 	int num_cell;
 	struct gsm_meas_rep_cell cell[6];
 };