include/: Adapt some headers to match contrib/struct_endianess.py format

This way the related files are not changed when running the script to
generate struct fields for big endian systems.

Change-Id: I830e0961331a73f8dceb1a5a1c879798541752fd
diff --git a/include/osmocom/gprs/protocol/gsm_08_18.h b/include/osmocom/gprs/protocol/gsm_08_18.h
index 0d002b5..d6f0fe6 100644
--- a/include/osmocom/gprs/protocol/gsm_08_18.h
+++ b/include/osmocom/gprs/protocol/gsm_08_18.h
@@ -362,13 +362,12 @@
 /* RIM PDU Indications
  * 3GPP TS 48.018, section 11.3.65.0 */
 struct bssgp_rim_pdu_ind {
-#if OSMO_IS_BIG_ENDIAN
-		uint8_t reserved:4,
-			pdu_type_ext:3,
-			ack_requested:1;
-#elif OSMO_IS_LITTLE_ENDIAN
+#if OSMO_IS_LITTLE_ENDIAN
 		uint8_t ack_requested:1,
 			pdu_type_ext:3,
 			reserved:4;
+#elif OSMO_IS_BIG_ENDIAN
+/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
+		uint8_t reserved:4, pdu_type_ext:3, ack_requested:1;
 #endif
 } __attribute__ ((packed));