[VOL-3832] Reporting correct EntityIDs dirung the MIB Upload process

Change-Id: I8e3e8998abc0d495495c1699aa17fa582241ec32
diff --git a/internal/common/omci/create.go b/internal/common/omci/create.go
index 1fcef4a..c1e2b0b 100644
--- a/internal/common/omci/create.go
+++ b/internal/common/omci/create.go
@@ -83,8 +83,8 @@
 
 func CreateGalEnetRequest(tid uint16) ([]byte, error) {
 	params := me.ParamData{
-		EntityID:   galEthernetEID,
-		Attributes: me.AttributeValueMap{"MaximumGemPayloadSize": maxGemPayloadSize},
+		EntityID:   1,
+		Attributes: me.AttributeValueMap{"MaximumGemPayloadSize": 48},
 	}
 	meDef, _ := me.NewGalEthernetProfile(params)
 	pkt, err := omci.GenFrame(meDef, omci.CreateRequestType, omci.TransactionID(tid))
@@ -129,7 +129,7 @@
 
 func CreateGemPortRequest(tid uint16) ([]byte, error) {
 	params := me.ParamData{
-		EntityID: gemEID,
+		EntityID: 1,
 		Attributes: me.AttributeValueMap{
 			"PortId":                              1,
 			"TContPointer":                        1,