aboutsummaryrefslogtreecommitdiff
path: root/src/vendorcode/amd/agesa/f10/Include/CommonReturns.h
diff options
context:
space:
mode:
authorEdward O'Callaghan <eocallaghan@alterapraxis.com>2014-11-18 18:27:29 +1100
committerStefan Reinauer <stefan.reinauer@coreboot.org>2016-02-03 03:50:05 +0100
commite3f47eada383defcc31b41cc4931c3cf3234c37d (patch)
treec83d98943cc347d01419fd31204ea7bd60625423 /src/vendorcode/amd/agesa/f10/Include/CommonReturns.h
parentc389635f6e5618b40279e823a46ae2ff50e620d1 (diff)
vendorcode/amd/agesa/f1{4,2,0} Sync Include directory
Sync and merge useless differences. Change-Id: I4eea66c35af66d473dd56db9ccf105c878266f22 Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-on: https://review.coreboot.org/7513 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/vendorcode/amd/agesa/f10/Include/CommonReturns.h')
-rw-r--r--src/vendorcode/amd/agesa/f10/Include/CommonReturns.h94
1 files changed, 44 insertions, 50 deletions
diff --git a/src/vendorcode/amd/agesa/f10/Include/CommonReturns.h b/src/vendorcode/amd/agesa/f10/Include/CommonReturns.h
index 6a807cbc98..1bf9f85779 100644
--- a/src/vendorcode/amd/agesa/f10/Include/CommonReturns.h
+++ b/src/vendorcode/amd/agesa/f10/Include/CommonReturns.h
@@ -1,3 +1,4 @@
+/* $NoKeywords:$ */
/**
* @file
*
@@ -9,52 +10,59 @@
* @xrefitem bom "File Content Label" "Release Content"
* @e project: AGESA
* @e sub-project: Common
- * @e \$Revision: 44323 $ @e \$Date: 2010-12-22 01:24:58 -0700 (Wed, 22 Dec 2010) $
+ * @e \$Revision: 63425 $ @e \$Date: 2011-12-22 11:24:10 -0600 (Thu, 22 Dec 2011) $
*
*/
/*
*****************************************************************************
*
-* Copyright (c) 2011, Advanced Micro Devices, Inc.
-* All rights reserved.
-*
-* Redistribution and use in source and binary forms, with or without
-* modification, are permitted provided that the following conditions are met:
-* * Redistributions of source code must retain the above copyright
-* notice, this list of conditions and the following disclaimer.
-* * Redistributions in binary form must reproduce the above copyright
-* notice, this list of conditions and the following disclaimer in the
-* documentation and/or other materials provided with the distribution.
-* * Neither the name of Advanced Micro Devices, Inc. nor the names of
-* its contributors may be used to endorse or promote products derived
-* from this software without specific prior written permission.
-*
-* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-* DISCLAIMED. IN NO EVENT SHALL ADVANCED MICRO DEVICES, INC. BE LIABLE FOR ANY
-* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ * Copyright (c) 2008 - 2012, Advanced Micro Devices, Inc.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * * Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * * Neither the name of Advanced Micro Devices, Inc. nor the names of
+ * its contributors may be used to endorse or promote products derived
+ * from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL ADVANCED MICRO DEVICES, INC. BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+* ***************************************************************************
*
- ***************************************************************************
*/
#ifndef _COMMON_RETURNS_H_
#define _COMMON_RETURNS_H_
+
+/**
+* Return True
+*
+* @retval True Default case, no special action
+*/
+BOOLEAN
+CommonReturnTrue ( VOID );
+
/**
* Return False.
*
* @retval FALSE Default case, no special action
*/
BOOLEAN
-CommonReturnFalse (
- IN VOID
-);
+CommonReturnFalse ( VOID );
/**
* Return (UINT8)zero.
@@ -63,9 +71,7 @@ CommonReturnFalse (
* @retval zero None, or only case zero.
*/
UINT8
-CommonReturnZero8 (
- IN VOID
-);
+CommonReturnZero8 ( VOID );
/**
* Return (UINT32)zero.
@@ -74,9 +80,7 @@ CommonReturnZero8 (
* @retval zero None, or only case zero.
*/
UINT32
-CommonReturnZero32 (
- IN VOID
-);
+CommonReturnZero32 ( VOID );
/**
* Return (UINT64)zero.
@@ -85,9 +89,7 @@ CommonReturnZero32 (
* @retval zero None, or only case zero.
*/
UINT64
-CommonReturnZero64 (
- IN VOID
-);
+CommonReturnZero64 ( VOID );
/**
* Return NULL
@@ -95,9 +97,7 @@ CommonReturnZero64 (
* @retval NULL pointer to nothing
*/
VOID *
-CommonReturnNULL (
- IN VOID
-);
+CommonReturnNULL ( VOID );
/**
* Return AGESA_SUCCESS.
@@ -105,26 +105,20 @@ CommonReturnNULL (
* @retval AGESA_SUCCESS Success.
*/
AGESA_STATUS
-CommonReturnAgesaSuccess (
- IN VOID
-);
+CommonReturnAgesaSuccess ( VOID );
/**
* Do Nothing.
*
*/
VOID
-CommonVoid (
- IN VOID
-);
+CommonVoid ( VOID );
/**
* ASSERT if this routine is called.
*
*/
VOID
-CommonAssert (
- IN VOID
-);
+CommonAssert ( VOID );
#endif // _COMMON_RETURNS_H_