VOL-649: Support MIB Upload Next with sequence numbers > 255
Corrected parameter range typo in OntDataFrame documentation

Change-Id: Ic578bd2741d16b034298f3a1d685b8966dee685d
diff --git a/voltha/extensions/omci/omci_entities.py b/voltha/extensions/omci/omci_entities.py
index c39335d..505c6b9 100644
--- a/voltha/extensions/omci/omci_entities.py
+++ b/voltha/extensions/omci/omci_entities.py
@@ -213,7 +213,8 @@
     attributes = [
         ECA(ShortField("managed_entity_id", None), {AA.R},
             range_check=lambda x: x == 0),
-        ECA(ByteField("mib_data_sync", 0), {AA.R, AA.W})
+        # Only 1 octet used if GET/SET operation
+        ECA(ShortField("mib_data_sync", 0), {AA.R, AA.W})
     ]
     mandatory_operations = {OP.Get, OP.Set,
                             OP.GetAllAlarms, OP.GetAllAlarmsNext,
@@ -857,6 +858,7 @@
     def to_json(self):
         return json.dumps(self.fields)
 
+
 class DownstreamIgmpMulticastTci(Packet):
     name = "DownstreamIgmpMulticastTci"
     fields_desc = [