diff options
author | Feng Tian <feng.tian@intel.com> | 2016-04-15 15:48:22 +0800 |
---|---|---|
committer | Feng Tian <feng.tian@intel.com> | 2016-04-26 15:44:54 +0800 |
commit | bd2388ab12984e0185d0c0c91729f2afdf631467 (patch) | |
tree | a445ac150c9271078a97eae25853b4252bf331c4 | |
parent | 5e71d5cf75b7b056802aa58d336a225ac550f701 (diff) | |
download | edk2-platforms-bd2388ab12984e0185d0c0c91729f2afdf631467.tar.xz |
MdeModulePkg/EmmcDxe: Fix wrong coding style on close brace
The close brace of EmmcDxeComponentNameGetControllerName should be
at the beginning of a line.
Cc: Qiu Shumin <shumin.qiu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Feng Tian <feng.tian@intel.com>
Reviewed-by: Shumin Qiu <shumin.qiu@intel.com>
-rw-r--r-- | MdeModulePkg/Bus/Sd/EmmcDxe/ComponentName.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/MdeModulePkg/Bus/Sd/EmmcDxe/ComponentName.c b/MdeModulePkg/Bus/Sd/EmmcDxe/ComponentName.c index c9e9d081bc..c6545b658a 100644 --- a/MdeModulePkg/Bus/Sd/EmmcDxe/ComponentName.c +++ b/MdeModulePkg/Bus/Sd/EmmcDxe/ComponentName.c @@ -1,7 +1,7 @@ /** @file
UEFI Component Name(2) protocol implementation for EmmcDxe driver.
- Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -237,5 +237,6 @@ EmmcDxeComponentNameGetControllerName ( ControllerNameTable,
ControllerName,
(BOOLEAN)(This == &gEmmcDxeComponentName)
- );}
+ );
+}
|