| 31 | } |
| 32 | |
| 33 | s32 Ft_Gmac_HwInitialize(Ft_Gmac_t *Gmac) |
| 34 | { |
| 35 | Ft_assertNonvoid(Gmac != NULL); |
| 36 | Ft_assertNonvoid(Gmac->IsReady == FT_COMPONENT_IS_READLY); |
| 37 | return FGmac_InitializeHw(&Gmac->Config); |
| 38 | } |
| 39 | |
| 40 | s32 Ft_GmacCfgInitialize(Ft_Gmac_t *Gmac, FGmac_Config_t *Config) |
| 41 | { |
no test coverage detected