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:
Laszlo Ersek 2016-03-18 21:41:51 +01:00
parent 455b7b66f7
commit f87c0b5e46
3 changed files with 1 additions and 7 deletions

View File

@ -269,12 +269,9 @@ SendATACommand (
)
{
EFI_STATUS Status;
EFI_SD_HOST_IO_PROTOCOL *SDHostIo;
UINT8 Data;
UINT32 TimeOut;
SDHostIo = CardData->SDHostIo;
//
//Write register
//

View File

@ -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;

View File

@ -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
//