1.6.3.6 DRV_G3ADP_MAC_Close Function

C

void DRV_G3ADP_MAC_Close( DRV_HANDLE hMac );

Summary

Closes a client instance of the G3 ADP MAC Driver.

Description

This function closes a client instance of the G3 ADP MAC Driver. Used by tcpip_module_manager.

Precondition

DRV_G3ADP_MAC_Open() should have been called.

Parameters

ParamDescription
hMacValid MAC handle, obtained by a call to DRV_G3ADP_MAC_Open.

Returns

None.

Example

    if(pNetIf->hIfMac != 0)
    {
        DRV_G3ADP_MAC_Close(pNetIf->hIfMac);
    }

Remarks

None.