aboutsummaryrefslogtreecommitdiff
path: root/src/vendorcode/amd/agesa/f12/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/f12/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/f12/Include/CommonReturns.h')
-rw-r--r--src/vendorcode/amd/agesa/f12/Include/CommonReturns.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/vendorcode/amd/agesa/f12/Include/CommonReturns.h b/src/vendorcode/amd/agesa/f12/Include/CommonReturns.h
index aeb600405f..1bf9f85779 100644
--- a/src/vendorcode/amd/agesa/f12/Include/CommonReturns.h
+++ b/src/vendorcode/amd/agesa/f12/Include/CommonReturns.h
@@ -10,13 +10,13 @@
* @xrefitem bom "File Content Label" "Release Content"
* @e project: AGESA
* @e sub-project: Common
- * @e \$Revision: 44324 $ @e \$Date: 2010-12-22 17:16:51 +0800 (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.
+ * Copyright (c) 2008 - 2012, Advanced Micro Devices, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -54,7 +54,7 @@
* @retval True Default case, no special action
*/
BOOLEAN
-CommonReturnTrue (void);
+CommonReturnTrue ( VOID );
/**
* Return False.
@@ -62,7 +62,7 @@ CommonReturnTrue (void);
* @retval FALSE Default case, no special action
*/
BOOLEAN
-CommonReturnFalse (void);
+CommonReturnFalse ( VOID );
/**
* Return (UINT8)zero.
@@ -71,7 +71,7 @@ CommonReturnFalse (void);
* @retval zero None, or only case zero.
*/
UINT8
-CommonReturnZero8 (void);
+CommonReturnZero8 ( VOID );
/**
* Return (UINT32)zero.
@@ -80,7 +80,7 @@ CommonReturnZero8 (void);
* @retval zero None, or only case zero.
*/
UINT32
-CommonReturnZero32 (void);
+CommonReturnZero32 ( VOID );
/**
* Return (UINT64)zero.
@@ -89,7 +89,7 @@ CommonReturnZero32 (void);
* @retval zero None, or only case zero.
*/
UINT64
-CommonReturnZero64 (void);
+CommonReturnZero64 ( VOID );
/**
* Return NULL
@@ -97,7 +97,7 @@ CommonReturnZero64 (void);
* @retval NULL pointer to nothing
*/
VOID *
-CommonReturnNULL (void);
+CommonReturnNULL ( VOID );
/**
* Return AGESA_SUCCESS.
@@ -105,20 +105,20 @@ CommonReturnNULL (void);
* @retval AGESA_SUCCESS Success.
*/
AGESA_STATUS
-CommonReturnAgesaSuccess (void);
+CommonReturnAgesaSuccess ( VOID );
/**
* Do Nothing.
*
*/
VOID
-CommonVoid (void);
+CommonVoid ( VOID );
/**
* ASSERT if this routine is called.
*
*/
VOID
-CommonAssert (void);
+CommonAssert ( VOID );
#endif // _COMMON_RETURNS_H_