Skip to content

Commit d690794

Browse files
bexcranhrw
authored andcommitted
Replace deprecated EFI_D_* with DEBUG_*
Replaced the deprecated EFI_D_{INFO,WARN,ERROR,VERBOSE} usage with DEBUG_{INFO,WARN,ERROR,VERBOSE}. Signed-off-by: Rebecca Cran <[email protected]>
1 parent 3bbb17a commit d690794

File tree

237 files changed

+1477
-1453
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

237 files changed

+1477
-1453
lines changed

Drivers/OptionRomPkg/Application/BltLibSample/BltLibSample.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Uint32SqRt (
136136
Mask = Mask >> 1
137137
) {
138138
SqRtMask = SqRt | Mask;
139-
//DEBUG ((EFI_D_INFO, "Uint32=0x%x SqRtMask=0x%x\n", Uint32, SqRtMask));
139+
//DEBUG ((DEBUG_INFO, "Uint32=0x%x SqRtMask=0x%x\n", Uint32, SqRtMask));
140140
Squared = (UINT32) (SqRtMask * SqRtMask);
141141
if (Squared > Uint32) {
142142
continue;
@@ -196,14 +196,14 @@ TestColor (
196196
10000000
197197
);
198198
if (TriWidth > ScreenWidth) {
199-
DEBUG ((EFI_D_INFO, "TriWidth at %d was too big\n", TriWidth));
199+
DEBUG ((DEBUG_INFO, "TriWidth at %d was too big\n", TriWidth));
200200
TriWidth = ScreenWidth;
201201
} else if (TriHeight > ScreenHeight) {
202-
DEBUG ((EFI_D_INFO, "TriHeight at %d was too big\n", TriHeight));
202+
DEBUG ((DEBUG_INFO, "TriHeight at %d was too big\n", TriHeight));
203203
TriHeight = ScreenHeight;
204204
}
205205

206-
DEBUG ((EFI_D_INFO, "Triangle Width: %d; Height: %d\n", TriWidth, TriHeight));
206+
DEBUG ((DEBUG_INFO, "Triangle Width: %d; Height: %d\n", TriWidth, TriHeight));
207207

208208
X1 = (ScreenWidth - TriWidth) / 2;
209209
X3 = X1 + TriWidth - 1;

Drivers/OptionRomPkg/AtapiPassThruDxe/AtapiPassThru.c

+8-8
Original file line numberDiff line numberDiff line change
@@ -3215,15 +3215,15 @@ Routine Description:
32153215

32163216
if (StatusRegister & DWF) {
32173217
DEBUG (
3218-
(EFI_D_BLKIO,
3218+
(DEBUG_BLKIO,
32193219
"AtapiPassThruCheckErrorStatus()-- %02x : Error : Write Fault\n",
32203220
StatusRegister)
32213221
);
32223222
}
32233223

32243224
if (StatusRegister & CORR) {
32253225
DEBUG (
3226-
(EFI_D_BLKIO,
3226+
(DEBUG_BLKIO,
32273227
"AtapiPassThruCheckErrorStatus()-- %02x : Error : Corrected Data\n",
32283228
StatusRegister)
32293229
);
@@ -3235,47 +3235,47 @@ Routine Description:
32353235

32363236
if (ErrorRegister & BBK_ERR) {
32373237
DEBUG (
3238-
(EFI_D_BLKIO,
3238+
(DEBUG_BLKIO,
32393239
"AtapiPassThruCheckErrorStatus()-- %02x : Error : Bad Block Detected\n",
32403240
ErrorRegister)
32413241
);
32423242
}
32433243

32443244
if (ErrorRegister & UNC_ERR) {
32453245
DEBUG (
3246-
(EFI_D_BLKIO,
3246+
(DEBUG_BLKIO,
32473247
"AtapiPassThruCheckErrorStatus()-- %02x : Error : Uncorrectable Data\n",
32483248
ErrorRegister)
32493249
);
32503250
}
32513251

32523252
if (ErrorRegister & MC_ERR) {
32533253
DEBUG (
3254-
(EFI_D_BLKIO,
3254+
(DEBUG_BLKIO,
32553255
"AtapiPassThruCheckErrorStatus()-- %02x : Error : Media Change\n",
32563256
ErrorRegister)
32573257
);
32583258
}
32593259

32603260
if (ErrorRegister & ABRT_ERR) {
32613261
DEBUG (
3262-
(EFI_D_BLKIO,
3262+
(DEBUG_BLKIO,
32633263
"AtapiPassThruCheckErrorStatus()-- %02x : Error : Abort\n",
32643264
ErrorRegister)
32653265
);
32663266
}
32673267

32683268
if (ErrorRegister & TK0NF_ERR) {
32693269
DEBUG (
3270-
(EFI_D_BLKIO,
3270+
(DEBUG_BLKIO,
32713271
"AtapiPassThruCheckErrorStatus()-- %02x : Error : Track 0 Not Found\n",
32723272
ErrorRegister)
32733273
);
32743274
}
32753275

32763276
if (ErrorRegister & AMNF_ERR) {
32773277
DEBUG (
3278-
(EFI_D_BLKIO,
3278+
(DEBUG_BLKIO,
32793279
"AtapiPassThruCheckErrorStatus()-- %02x : Error : Address Mark Not Found\n",
32803280
ErrorRegister)
32813281
);

Drivers/OptionRomPkg/Library/FrameBufferBltLib/FrameBufferBltLib.c

+9-9
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ ConfigurePixelBitMaskFormat (
5555
mPixelShr[Loop] = 0;
5656
}
5757
MergedMasks = (UINT32) (MergedMasks | Masks[Loop]);
58-
DEBUG ((EFI_D_INFO, "%d: shl:%d shr:%d mask:%x\n", Loop, mPixelShl[Loop], mPixelShr[Loop], Masks[Loop]));
58+
DEBUG ((DEBUG_INFO, "%d: shl:%d shr:%d mask:%x\n", Loop, mPixelShl[Loop], mPixelShr[Loop], Masks[Loop]));
5959
}
6060
MergedMasks = (UINT32) (MergedMasks | Masks[3]);
6161

6262
ASSERT (MergedMasks != 0);
6363
mBltLibBytesPerPixel = (UINTN) ((HighBitSet32 (MergedMasks) + 7) / 8);
6464

65-
DEBUG ((EFI_D_INFO, "Bytes per pixel: %d\n", mBltLibBytesPerPixel));
65+
DEBUG ((DEBUG_INFO, "Bytes per pixel: %d\n", mBltLibBytesPerPixel));
6666

6767
CopyMem (&mPixelBitMasks, BitMask, sizeof (*BitMask));
6868
}
@@ -245,17 +245,17 @@ BltLibVideoFill (
245245
// BltBuffer to Video: Source is BltBuffer, destination is Video
246246
//
247247
if (DestinationY + Height > mBltLibHeight) {
248-
DEBUG ((EFI_D_INFO, "VideoFill: Past screen (Y)\n"));
248+
DEBUG ((DEBUG_INFO, "VideoFill: Past screen (Y)\n"));
249249
return EFI_INVALID_PARAMETER;
250250
}
251251

252252
if (DestinationX + Width > mBltLibWidthInPixels) {
253-
DEBUG ((EFI_D_INFO, "VideoFill: Past screen (X)\n"));
253+
DEBUG ((DEBUG_INFO, "VideoFill: Past screen (X)\n"));
254254
return EFI_INVALID_PARAMETER;
255255
}
256256

257257
if (Width == 0 || Height == 0) {
258-
DEBUG ((EFI_D_INFO, "VideoFill: Width or Height is 0\n"));
258+
DEBUG ((DEBUG_INFO, "VideoFill: Width or Height is 0\n"));
259259
return EFI_INVALID_PARAMETER;
260260
}
261261

@@ -268,7 +268,7 @@ BltLibVideoFill (
268268
(((Uint32 << mPixelShl[1]) >> mPixelShr[1]) & mPixelBitMasks.GreenMask) |
269269
(((Uint32 << mPixelShl[2]) >> mPixelShr[2]) & mPixelBitMasks.BlueMask)
270270
);
271-
VDEBUG ((EFI_D_INFO, "VideoFill: color=0x%x, wide-fill=0x%x\n", Uint32, WideFill));
271+
VDEBUG ((DEBUG_INFO, "VideoFill: color=0x%x, wide-fill=0x%x\n", Uint32, WideFill));
272272

273273
//
274274
// If the size of the pixel data evenly divides the sizeof
@@ -299,7 +299,7 @@ BltLibVideoFill (
299299
}
300300

301301
if (UseWideFill && (DestinationX == 0) && (Width == mBltLibWidthInPixels)) {
302-
VDEBUG ((EFI_D_INFO, "VideoFill (wide, one-shot)\n"));
302+
VDEBUG ((DEBUG_INFO, "VideoFill (wide, one-shot)\n"));
303303
Offset = DestinationY * mBltLibWidthInPixels;
304304
Offset = mBltLibBytesPerPixel * Offset;
305305
BltMemDst = (VOID*) (mBltLibFrameBuffer + Offset);
@@ -319,7 +319,7 @@ BltLibVideoFill (
319319
BltMemDst = (VOID*) (mBltLibFrameBuffer + Offset);
320320

321321
if (UseWideFill && (((UINTN) BltMemDst & 7) == 0)) {
322-
VDEBUG ((EFI_D_INFO, "VideoFill (wide)\n"));
322+
VDEBUG ((DEBUG_INFO, "VideoFill (wide)\n"));
323323
SizeInBytes = WidthInBytes;
324324
if (SizeInBytes >= 8) {
325325
SetMem64 (BltMemDst, SizeInBytes & ~7, WideFill);
@@ -329,7 +329,7 @@ BltLibVideoFill (
329329
CopyMem (BltMemDst, (VOID*) &WideFill, SizeInBytes);
330330
}
331331
} else {
332-
VDEBUG ((EFI_D_INFO, "VideoFill (not wide)\n"));
332+
VDEBUG ((DEBUG_INFO, "VideoFill (not wide)\n"));
333333
if (!LineBufferReady) {
334334
CopyMem (mBltLibLineBuffer, &WideFill, mBltLibBytesPerPixel);
335335
for (X = 1; X < Width; ) {

Features/Intel/Debugging/PostCodeDebugFeaturePkg/Library/PostCodeStatusCodeHandlerLib/PeiPostCodeStatusCodeHandlerLib.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ PostCodeStatusCodeReportWorker (
5454

5555
PostCodeValue = GetPostCodeFromStatusCode (CodeType, Value);
5656
if (PostCodeValue != 0) {
57-
DEBUG ((EFI_D_INFO, "POSTCODE=<%02x>\n", PostCodeValue));
57+
DEBUG ((DEBUG_INFO, "POSTCODE=<%02x>\n", PostCodeValue));
5858
PostCode (PostCodeValue);
5959
}
6060

Features/Intel/Debugging/PostCodeDebugFeaturePkg/Library/PostCodeStatusCodeHandlerLib/RuntimeDxePostCodeStatusCodeHandlerLib.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ PostCodeStatusCodeReportWorker (
5858

5959
PostCodeValue = GetPostCodeFromStatusCode (CodeType, Value);
6060
if (PostCodeValue != 0) {
61-
DEBUG ((EFI_D_INFO, "POSTCODE=<%02x>\n", PostCodeValue));
61+
DEBUG ((DEBUG_INFO, "POSTCODE=<%02x>\n", PostCodeValue));
6262
PostCode (PostCodeValue);
6363
}
6464

Features/Intel/Debugging/PostCodeDebugFeaturePkg/Library/PostCodeStatusCodeHandlerLib/SmmPostCodeStatusCodeHandlerLib.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ PostCodeStatusCodeReportWorker (
5454

5555
PostCodeValue = GetPostCodeFromStatusCode (CodeType, Value);
5656
if (PostCodeValue != 0) {
57-
DEBUG ((EFI_D_INFO, "POSTCODE=<%02x>\n", PostCodeValue));
57+
DEBUG ((DEBUG_INFO, "POSTCODE=<%02x>\n", PostCodeValue));
5858
PostCode (PostCodeValue);
5959
}
6060

Features/Intel/OutOfBandManagement/IpmiFeaturePkg/GenericIpmi/Smm/SmmGenericIpmi.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,14 @@ Routine Description:
7979
&DataSize
8080
);
8181
if (Status == EFI_SUCCESS) {
82-
DEBUG ((EFI_D_INFO, "IPMI: SendCommand success!\n"));
82+
DEBUG ((DEBUG_INFO, "IPMI: SendCommand success!\n"));
8383
break;
8484
} else {
8585
//
8686
// Display message and retry.
8787
//
8888
DEBUG (
89-
(DEBUG_WARN | EFI_D_INFO,
89+
(DEBUG_WARN | DEBUG_INFO,
9090
"IPMI: Waiting for BMC (KCS 0x%x)...\n",
9191
IpmiInstance->IpmiIoBase)
9292
);

Platform/AMD/VanGoghBoard/VanGoghCommonPkg/Smm/SmmAccessPei/SmmAccessPei.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ SmmAccessPeiEntryPoint (
427427
ASSERT_EFI_ERROR (Status);
428428

429429
DEBUG (
430-
(EFI_D_INFO, "SMM Base:Size %08X:%08X\n",
430+
(DEBUG_INFO, "SMM Base:Size %08X:%08X\n",
431431
(UINTN)(SmmAccessPrivate->SmramDesc[SmmAccessPrivate->NumberRegions-1].PhysicalStart),
432432
(UINTN)(SmmAccessPrivate->SmramDesc[SmmAccessPrivate->NumberRegions-1].PhysicalSize)
433433
));

Platform/ARM/Drivers/BootMonFs/BootMonFsEntryPoint.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ BootMonFsEntryPoint (
516516
);
517517
ASSERT_EFI_ERROR (Status);
518518
} else {
519-
DEBUG((EFI_D_ERROR,"Warning: No Device Paths supporting BootMonFs have been defined in the PCD.\n"));
519+
DEBUG((DEBUG_ERROR,"Warning: No Device Paths supporting BootMonFs have been defined in the PCD.\n"));
520520
}
521521

522522
return Status;

Platform/ARM/Drivers/BootMonFs/BootMonFsImages.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ BootMonFsDiscoverNextImage (
164164

165165
// If we found a valid image description...
166166
if (BootMonFsIsImageValid (&File->HwDescription, (CurrentLba - Instance->Media->LowestAlignedLba))) {
167-
DEBUG ((EFI_D_ERROR, "Found image: %a in block %d.\n",
167+
DEBUG ((DEBUG_ERROR, "Found image: %a in block %d.\n",
168168
&(File->HwDescription.Footer.Filename),
169169
(UINTN)(CurrentLba - Instance->Media->LowestAlignedLba)
170170
));

Platform/ARM/Drivers/FdtPlatformDxe/FdtPlatform.c

+9-9
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ InstallFdt (
6868
(VOID **)&EfiDevicePathFromTextProtocol
6969
);
7070
if (EFI_ERROR (Status)) {
71-
DEBUG ((EFI_D_ERROR, "InstallFdt() - Failed to locate EFI_DEVICE_PATH_FROM_TEXT_PROTOCOL protocol\n"));
71+
DEBUG ((DEBUG_ERROR, "InstallFdt() - Failed to locate EFI_DEVICE_PATH_FROM_TEXT_PROTOCOL protocol\n"));
7272
return Status;
7373
}
7474

@@ -94,7 +94,7 @@ InstallFdt (
9494
//
9595
if (fdt_check_header ((VOID*)(UINTN)FdtBlobBase) != 0 ||
9696
(UINTN)fdt_totalsize ((VOID*)(UINTN)FdtBlobBase) > FdtBlobSize) {
97-
DEBUG ((EFI_D_ERROR, "InstallFdt() - loaded FDT binary image seems corrupt\n"));
97+
DEBUG ((DEBUG_ERROR, "InstallFdt() - loaded FDT binary image seems corrupt\n"));
9898
Status = EFI_LOAD_ERROR;
9999
goto Error;
100100
}
@@ -210,7 +210,7 @@ FdtPlatformEntryPoint (
210210
}
211211
if (EFI_ERROR (Status)) {
212212
DEBUG ((
213-
EFI_D_WARN,
213+
DEBUG_WARN,
214214
"Unable to install \"setfdt\" EFI Shell command - %r \n",
215215
Status
216216
));
@@ -236,7 +236,7 @@ FdtPlatformEntryPoint (
236236
}
237237
if (EFI_ERROR (Status)) {
238238
DEBUG ((
239-
EFI_D_WARN,
239+
DEBUG_WARN,
240240
"Unable to install \"dumpfdt\" EFI Shell command - %r \n",
241241
Status
242242
));
@@ -322,14 +322,14 @@ RunFdtInstallation (
322322
Status = InstallFdt (TextDevicePath);
323323
if (!EFI_ERROR (Status)) {
324324
DEBUG ((
325-
EFI_D_WARN,
325+
DEBUG_WARN,
326326
"Installation of the FDT using the device path <%s> completed.\n",
327327
TextDevicePath
328328
));
329329
goto Done;
330330
}
331331
DEBUG ((
332-
EFI_D_ERROR,
332+
DEBUG_ERROR,
333333
"Installation of the FDT specified by the \"Fdt\" UEFI variable failed - %r\n",
334334
Status
335335
));
@@ -368,13 +368,13 @@ RunFdtInstallation (
368368

369369
Status = InstallFdt (TextDevicePath);
370370
if (!EFI_ERROR (Status)) {
371-
DEBUG ((EFI_D_WARN, "Installation of the FDT using the device path <%s> completed.\n",
371+
DEBUG ((DEBUG_WARN, "Installation of the FDT using the device path <%s> completed.\n",
372372
TextDevicePath
373373
));
374374
goto Done;
375375
}
376376

377-
DEBUG ((EFI_D_WARN, "Installation of the FDT using the device path <%s> failed - %r.\n",
377+
DEBUG ((DEBUG_WARN, "Installation of the FDT using the device path <%s> failed - %r.\n",
378378
TextDevicePath, Status
379379
));
380380
FreePool (TextDevicePath);
@@ -389,7 +389,7 @@ RunFdtInstallation (
389389
Done:
390390

391391
if (EFI_ERROR (Status)) {
392-
DEBUG ((EFI_D_ERROR, "Failed to install the FDT - %r.\n", Status));
392+
DEBUG ((DEBUG_ERROR, "Failed to install the FDT - %r.\n", Status));
393393
return Status;
394394
}
395395

Platform/ARM/Drivers/FdtPlatformDxe/ShellDumpFdt.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ DumpFdt (
104104
for (i = 0; i < num; i++) {
105105
err = fdt_get_mem_rsv (FdtBlob, i, &addr, &size);
106106
if (err) {
107-
DEBUG ((EFI_D_ERROR, "Error (%d) : Cannot get memreserve section (%d)\n", err, i));
107+
DEBUG ((DEBUG_ERROR, "Error (%d) : Cannot get memreserve section (%d)\n", err, i));
108108
}
109109
else {
110110
Print (L"/memreserve/ \t0x%lx \t0x%lx;\n", addr, size);

Platform/ARM/JunoPkg/Drivers/ArmJunoDxe/ArmJunoDxe.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ ArmJunoEntryPoint (
378378
// Install dynamic Shell command to run baremetal binaries.
379379
Status = ShellDynCmdRunAxfInstall (ImageHandle);
380380
if (EFI_ERROR (Status)) {
381-
DEBUG ((EFI_D_ERROR, "ArmJunoDxe: Failed to install ShellDynCmdRunAxf\n"));
381+
DEBUG ((DEBUG_ERROR, "ArmJunoDxe: Failed to install ShellDynCmdRunAxf\n"));
382382
}
383383

384384
GetJunoRevision(JunoRevision);
@@ -440,7 +440,7 @@ ArmJunoEntryPoint (
440440

441441
if (EFI_ERROR (Status)) {
442442
DEBUG (
443-
(EFI_D_ERROR,
443+
(DEBUG_ERROR,
444444
"ArmJunoDxe: Setting of FDT device path in PcdFdtDevicePaths failed - %r\n", Status)
445445
);
446446
return Status;

Platform/ARM/JunoPkg/Drivers/SataSiI3132Dxe/SataSiI3132.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ SataSiI3132DriverBindingStart (
394394
);
395395
}
396396
if (EFI_ERROR (Status)) {
397-
DEBUG ((EFI_D_ERROR, "SataSiI3132DriverBindingStart: failed to enable controller\n"));
397+
DEBUG ((DEBUG_ERROR, "SataSiI3132DriverBindingStart: failed to enable controller\n"));
398398
goto CLOSE_PCIIO;
399399
}
400400

Platform/ARM/JunoPkg/Drivers/SataSiI3132Dxe/SataSiI3132.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ typedef struct _SATA_SI3132_INSTANCE {
156156
#define SATA_PORT_READ32(Offset, Value) PciIo->Mem.Read (PciIo, EfiPciIoWidthUint32, 1, Offset, 1, Value)
157157
#define SATA_PORT_WRITE32(Offset, Value) { UINT32 Value32 = Value; PciIo->Mem.Write (PciIo, EfiPciIoWidthUint32, 1, Offset, 1, &Value32); }
158158

159-
#define SATA_TRACE(txt) DEBUG((EFI_D_VERBOSE, "ARM_SATA: " txt "\n"))
159+
#define SATA_TRACE(txt) DEBUG((DEBUG_VERBOSE, "ARM_SATA: " txt "\n"))
160160

161161
extern EFI_COMPONENT_NAME_PROTOCOL gSataSiI3132ComponentName;
162162
extern EFI_COMPONENT_NAME2_PROTOCOL gSataSiI3132ComponentName2;

Platform/ARM/JunoPkg/Drivers/SataSiI3132Dxe/SiI3132AtaPassThru.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -249,12 +249,12 @@ SiI3132AtaPassThruCommand (
249249

250250

251251
if ((Packet->Timeout != 0) && (Timeout == 0)) {
252-
DEBUG ((EFI_D_ERROR, "SiI3132AtaPassThru() Err:Timeout\n"));
252+
DEBUG ((DEBUG_ERROR, "SiI3132AtaPassThru() Err:Timeout\n"));
253253
//ASSERT (0);
254254
return EFI_TIMEOUT;
255255
} else if (Value32 & (SII3132_PORT_INT_CMDERR << 16)) {
256256
SATA_PORT_READ32 (SataPort->RegBase + SII3132_PORT_CMDERROR_REG, &Error);
257-
DEBUG ((EFI_D_ERROR, "SiI3132AtaPassThru() CmdErr:0x%X (SiI3132 Err:0x%X)\n", Value32, Error));
257+
DEBUG ((DEBUG_ERROR, "SiI3132AtaPassThru() CmdErr:0x%X (SiI3132 Err:0x%X)\n", Value32, Error));
258258
ASSERT (0);
259259
return EFI_DEVICE_ERROR;
260260
} else if (Value32 & (SII3132_PORT_INT_CMDCOMPL << 16)) {
@@ -343,7 +343,7 @@ SiI3132AtaPassThru (
343343
}
344344
SataPort = SataDevice->Port;
345345

346-
DEBUG ((EFI_D_INFO, "SiI3132AtaPassThru(%d,%d) : AtaCmd:0x%X Prot:%d\n", Port, PortMultiplierPort,
346+
DEBUG ((DEBUG_INFO, "SiI3132AtaPassThru(%d,%d) : AtaCmd:0x%X Prot:%d\n", Port, PortMultiplierPort,
347347
Packet->Acb->AtaCommand, Packet->Protocol));
348348

349349
return SiI3132AtaPassThruCommand (SataSiI3132Instance, SataPort, PortMultiplierPort, Packet, Event);

0 commit comments

Comments
 (0)