Stub out GetOnuOmciState()

Change-Id: Idfdaeb39a0b4c61851d721bb38c923791cb86047
diff --git a/omci_state.go b/omci_state.go
index 5f2a314..4aedd28 100644
--- a/omci_state.go
+++ b/omci_state.go
@@ -39,8 +39,11 @@
 }
 
 func GetOnuOmciState(onuId uint32, intfId uint32) istate {
-	key := OnuKey{intfId, onuId}
-	return (OnuOmciStateMap[key].state)
+	/*
+		key := OnuKey{intfId, onuId}
+		return (OnuOmciStateMap[key].state)
+	*/
+	return INCOMPLETE
 }
 
 func GetGemPortId(onuId uint32, intfId uint32) uint16 {