diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2016-05-12 14:27:04 -0700 |
---|---|---|
committer | Michael Kinney <michael.d.kinney@intel.com> | 2016-05-13 11:34:41 -0700 |
commit | 86ae8cf236ca5b99765de0a6de6fa9307e936db7 (patch) | |
tree | 14bf846a395ee3fc5a0b868c2df44c00aca9affc | |
parent | 0c5d4079789767ffabfdfe0d9767d9db348fa2c7 (diff) | |
download | edk2-platforms-86ae8cf236ca5b99765de0a6de6fa9307e936db7.tar.xz |
QuarkSocPkg/SDControllerDxe: Add EFIAPI to SetHighSpeedMode
Add the missing EFIAPI to fix the inconsistent routine declaration and
implementation of a protocol service.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com>
Reviewed-by: Michael Kinney <michael.d.kinney@intel.com>
-rw-r--r-- | QuarkSocPkg/QuarkSouthCluster/Sdio/Dxe/SDControllerDxe/SDController.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/QuarkSocPkg/QuarkSouthCluster/Sdio/Dxe/SDControllerDxe/SDController.c b/QuarkSocPkg/QuarkSouthCluster/Sdio/Dxe/SDControllerDxe/SDController.c index 18e85c8299..96c8774916 100644 --- a/QuarkSocPkg/QuarkSouthCluster/Sdio/Dxe/SDControllerDxe/SDController.c +++ b/QuarkSocPkg/QuarkSouthCluster/Sdio/Dxe/SDControllerDxe/SDController.c @@ -2,7 +2,7 @@ The SD host controller driver model and HC protocol routines.
-Copyright (c) 2013-2015 Intel Corporation.
+Copyright (c) 2013-2016 Intel Corporation.
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -244,6 +244,7 @@ GetErrorReason ( @return EFI_SUCCESS
**/
EFI_STATUS
+EFIAPI
SetHighSpeedMode (
IN EFI_SD_HOST_IO_PROTOCOL *This,
IN BOOLEAN Enable
|