EmulatorPkg: Remove all trailing whitespace

Signed-off-by: jljusten

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11919 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jljusten
2011-06-28 16:50:26 +00:00
parent bb89ec1a7e
commit d18d8a1d0e
161 changed files with 2566 additions and 2566 deletions

View File

@@ -24,20 +24,20 @@ Abstract:
EFI_SIMPLE_NETWORK_PROTOCOL gEmuSnpTemplate = {
EFI_SIMPLE_NETWORK_PROTOCOL_REVISION,
EmuSnpStart,
EmuSnpStop,
EmuSnpInitialize,
EmuSnpReset,
EmuSnpShutdown,
EmuSnpReceiveFilters,
EmuSnpStationAddress,
EmuSnpStatistics,
EmuSnpMcastIptoMac,
EmuSnpNvdata,
EmuSnpGetStatus,
EmuSnpTransmit,
EmuSnpReceive,
EFI_SIMPLE_NETWORK_PROTOCOL_REVISION,
EmuSnpStart,
EmuSnpStop,
EmuSnpInitialize,
EmuSnpReset,
EmuSnpShutdown,
EmuSnpReceiveFilters,
EmuSnpStationAddress,
EmuSnpStatistics,
EmuSnpMcastIptoMac,
EmuSnpNvdata,
EmuSnpGetStatus,
EmuSnpTransmit,
EmuSnpReceive,
NULL, // WaitForPacket
NULL // Mode
};
@@ -94,8 +94,8 @@ EmuSnpStop (
/**
Resets a network adapter and allocates the transmit and receive buffers
required by the network interface; optionally, also requests allocation
Resets a network adapter and allocates the transmit and receive buffers
required by the network interface; optionally, also requests allocation
of additional transmit and receive buffers.
@param This Protocol instance pointer.
@@ -131,8 +131,8 @@ EmuSnpInitialize (
}
/**
Resets a network adapter and re-initializes it with the parameters that were
provided in the previous call to Initialize().
Resets a network adapter and re-initializes it with the parameters that were
provided in the previous call to Initialize().
@param This Protocol instance pointer.
@param ExtendedVerification Indicates that the driver may perform a more
@@ -159,7 +159,7 @@ EmuSnpReset (
}
/**
Resets a network adapter and leaves it in a state that is safe for
Resets a network adapter and leaves it in a state that is safe for
another driver to initialize.
@param This Protocol instance pointer.
@@ -334,7 +334,7 @@ EmuSnpMcastIptoMac (
/**
Performs read and write operations on the NVRAM device attached to a
Performs read and write operations on the NVRAM device attached to a
network interface.
@param This Protocol instance pointer.
@@ -370,7 +370,7 @@ EmuSnpNvdata (
/**
Reads the current interrupt status and recycled transmit buffer status from
Reads the current interrupt status and recycled transmit buffer status from
a network interface.
@param This Protocol instance pointer.
@@ -568,8 +568,8 @@ EmuSnpDriverBindingSupported (
}
}
}
//
// Open the IO Abstraction(s) needed to perform the supported test
//
@@ -602,8 +602,8 @@ EmuSnpDriverBindingSupported (
This->DriverBindingHandle,
ControllerHandle
);
//
// Open the EFI Device Path protocol needed to perform the supported test
//
@@ -724,7 +724,7 @@ EmuSnpDriverBindingStart (
Private->Snp.Mode = &Private->Mode;
Private->ControllerNameTable = NULL;
Status = Private->Io->CreateMapping (Private->Io, &Private->Mode);
if (EFI_ERROR (Status)) {
goto Done;
@@ -760,7 +760,7 @@ EmuSnpDriverBindingStart (
EmuIoThunk->ConfigString,
TRUE
);
AddUnicodeString2 (
"en",
gEmuSnpDriverComponentName2.SupportedLanguages,
@@ -819,7 +819,7 @@ Done:
restrictions for this service. DisconnectController()
must follow these calling restrictions. If any other agent wishes
to call Stop() it must also follow these calling restrictions.
@param This Protocol instance pointer.
@param ControllerHandle Handle of device to stop driver on
@param NumberOfChildren Number of Handles in ChildHandleBuffer. If number of
@@ -867,8 +867,8 @@ EmuSnpDriverBindingStop (
}
ASSERT (NumberOfChildren == 1);
//
// Get our context back.
//

View File

@@ -56,7 +56,7 @@ typedef struct {
EFI_SIMPLE_NETWORK_PROTOCOL Snp;
EFI_SIMPLE_NETWORK_MODE Mode;
EFI_UNICODE_STRING_TABLE *ControllerNameTable;
} EMU_SNP_PRIVATE_DATA;
@@ -124,7 +124,7 @@ EmuSnpDriverBindingStart (
restrictions for this service. DisconnectController()
must follow these calling restrictions. If any other agent wishes
to call Stop() it must also follow these calling restrictions.
@param This Protocol instance pointer.
@param ControllerHandle Handle of device to stop driver on
@param NumberOfChildren Number of Handles in ChildHandleBuffer. If number of
@@ -156,7 +156,7 @@ EFIAPI
EmuSnpStart(
IN EFI_SIMPLE_NETWORK_PROTOCOL* This
);
/**
Changes the state of a network interface from "started" to "stopped".
@@ -170,10 +170,10 @@ EFIAPI
EmuSnpStop(
IN EFI_SIMPLE_NETWORK_PROTOCOL* This
);
/**
Resets a network adapter and allocates the transmit and receive buffers
required by the network interface; optionally, also requests allocation
Resets a network adapter and allocates the transmit and receive buffers
required by the network interface; optionally, also requests allocation
of additional transmit and receive buffers.
@param This Protocol instance pointer.
@@ -198,10 +198,10 @@ EmuSnpInitialize(
IN UINTN ExtraRxBufferSize OPTIONAL,
IN UINTN ExtraTxBufferSize OPTIONAL
);
/**
Resets a network adapter and re-initializes it with the parameters that were
provided in the previous call to Initialize().
Resets a network adapter and re-initializes it with the parameters that were
provided in the previous call to Initialize().
@param This Protocol instance pointer.
@param ExtendedVerification Indicates that the driver may perform a more
@@ -219,7 +219,7 @@ EmuSnpReset(
);
/**
Resets a network adapter and leaves it in a state that is safe for
Resets a network adapter and leaves it in a state that is safe for
another driver to initialize.
@param This Protocol instance pointer.
@@ -311,10 +311,10 @@ EmuSnpStatistics(
IN OUT UINTN* StatisticsSize OPTIONAL,
OUT EFI_NETWORK_STATISTICS* StatisticsTable OPTIONAL
);
/**
Converts a multicast IP address to a multicast HW MAC address.
@param This Protocol instance pointer.
@param Ipv6 Set to TRUE if the multicast IP address is IPv6 [RFC 2460]. Set
to FALSE if the multicast IP address is IPv4 [RFC 791].
@@ -341,7 +341,7 @@ EmuSnpMcastIptoMac(
);
/**
Performs read and write operations on the NVRAM device attached to a
Performs read and write operations on the NVRAM device attached to a
network interface.
@param This Protocol instance pointer.
@@ -367,7 +367,7 @@ EmuSnpNvdata(
);
/**
Reads the current interrupt status and recycled transmit buffer status from
Reads the current interrupt status and recycled transmit buffer status from
a network interface.
@param This Protocol instance pointer.