ArmPlatformPkg/ArmVExpressPkg: Added 'EfiResetPlatformSpecific' to ResetSystemLib

This value was missing from the switch on 'ResetType'.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Olivier Martin <olivier.martin@arm.com>



git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14583 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Olivier Martin 2013-08-21 14:45:02 +00:00 committed by oliviermartin
parent 1cb1367350
commit 18e44b07d4

View File

@ -1,11 +1,11 @@
/** @file /** @file
Template library implementation to support ResetSystem Runtime call. Template library implementation to support ResetSystem Runtime call.
Fill in the templates with what ever makes you system reset. Fill in the templates with what ever makes you system reset.
Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR> Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
Copyright (c) 2013, ARM Ltd. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
@ -46,6 +46,8 @@ LibResetSystem (
) )
{ {
switch (ResetType) { switch (ResetType) {
case EfiResetPlatformSpecific:
// Map the platform specific reset as reboot
case EfiResetWarm: case EfiResetWarm:
// Map a warm reset into a cold reset // Map a warm reset into a cold reset
case EfiResetCold: case EfiResetCold: