mirror of https://github.com/acidanthera/audk.git
QuarkSocPkg: SDMediaDeviceDxe: remove set but unused variables
Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Kelly Steele <kelly.steele@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Jeff Fan <jeff.fan@intel.com>
This commit is contained in:
parent
455b7b66f7
commit
f87c0b5e46
|
@ -269,12 +269,9 @@ SendATACommand (
|
|||
)
|
||||
{
|
||||
EFI_STATUS Status;
|
||||
EFI_SD_HOST_IO_PROTOCOL *SDHostIo;
|
||||
UINT8 Data;
|
||||
UINT32 TimeOut;
|
||||
|
||||
SDHostIo = CardData->SDHostIo;
|
||||
|
||||
//
|
||||
//Write register
|
||||
//
|
||||
|
|
|
@ -294,14 +294,13 @@ CEATABlockFlushBlocks (
|
|||
)
|
||||
{
|
||||
|
||||
EFI_STATUS Status;
|
||||
CARD_DATA *CardData;
|
||||
|
||||
CardData = CARD_DATA_FROM_THIS(This);
|
||||
|
||||
if (CardData->NeedFlush) {
|
||||
CardData->NeedFlush = FALSE;
|
||||
Status = FlushCache (CardData);
|
||||
FlushCache (CardData);
|
||||
}
|
||||
|
||||
return EFI_SUCCESS;
|
||||
|
|
|
@ -849,12 +849,10 @@ MMCCardVoltageSelection (
|
|||
)
|
||||
{
|
||||
EFI_STATUS Status;
|
||||
EFI_SD_HOST_IO_PROTOCOL *SDHostIo;
|
||||
UINT8 Retry;
|
||||
UINT32 TimeOut;
|
||||
|
||||
Status = EFI_SUCCESS;
|
||||
SDHostIo = CardData->SDHostIo;
|
||||
//
|
||||
//First try the high voltage, then if supported choose the low voltage
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue