diff options
| author | William Bryan <wilbryan@us.ibm.com> | 2016-08-01 13:16:30 -0500 |
|---|---|---|
| committer | William A. Bryan <wilbryan@us.ibm.com> | 2016-08-02 14:12:55 -0400 |
| commit | 315680e0fd53cbc3f271b7d59393a4bf4661b8e2 (patch) | |
| tree | 7a604bfede856daeb8be72d04b09333e1c6c002a /src/lib/common | |
| parent | 9ad0d6f666fcd2392a5d6d3634df82264a5729eb (diff) | |
| download | talos-occ-315680e0fd53cbc3f271b7d59393a4bf4661b8e2.tar.gz talos-occ-315680e0fd53cbc3f271b7d59393a4bf4661b8e2.zip | |
Remove IBM Confidential Disclaimers
Change-Id: Ie3dcd5b6cee3e6b191cf136d30af634c9966318e
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/27718
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: William A. Bryan <wilbryan@us.ibm.com>
Reviewed-by: Martha Broyles <mbroyles@us.ibm.com>
Diffstat (limited to 'src/lib/common')
| -rw-r--r-- | src/lib/common/kernel.h | 7 | ||||
| -rw-r--r-- | src/lib/common/libcommonfiles.mk | 14 | ||||
| -rw-r--r-- | src/lib/common/memcpy.c | 9 | ||||
| -rw-r--r-- | src/lib/common/memset.c | 9 | ||||
| -rw-r--r-- | src/lib/common/string.c | 7 | ||||
| -rw-r--r-- | src/lib/common/string.h | 10 |
6 files changed, 7 insertions, 49 deletions
diff --git a/src/lib/common/kernel.h b/src/lib/common/kernel.h index 063d35c..341d551 100644 --- a/src/lib/common/kernel.h +++ b/src/lib/common/kernel.h @@ -5,7 +5,7 @@ /* */ /* OpenPOWER OnChipController Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2015 */ +/* Contributors Listed Below - COPYRIGHT 2015,2016 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -24,11 +24,6 @@ /* IBM_PROLOG_END_TAG */ #ifndef __KERNEL_H__ #define __KERNEL_H__ -//----------------------------------------------------------------------------- -// *! (C) Copyright International Business Machines Corp. 2015 -// *! All Rights Reserved -- Property of IBM -// *! *** IBM Confidential *** -//----------------------------------------------------------------------------- /// \file kernel.h /// \brief Kernel agnostic macros that allow the same code to work with diff --git a/src/lib/common/libcommonfiles.mk b/src/lib/common/libcommonfiles.mk index 4a05fac..c9f067f 100644 --- a/src/lib/common/libcommonfiles.mk +++ b/src/lib/common/libcommonfiles.mk @@ -22,21 +22,11 @@ # permissions and limitations under the License. # # IBM_PROLOG_END_TAG + # @file libcommonfiles.mk # # @brief mk for libcommon.a object files -# -# @page ChangeLogs Change Logs -# @section ofiles.mk -# @verbatim -# -# -# Change Log ****************************************************************** -# Flag Defect/Feature User Date Description -# ------ -------------- ---------- ------------ ----------- -# -# @endverbatim -# + ########################################################################## # INCLUDES ########################################################################## diff --git a/src/lib/common/memcpy.c b/src/lib/common/memcpy.c index 77827dc..8b20f68 100644 --- a/src/lib/common/memcpy.c +++ b/src/lib/common/memcpy.c @@ -5,7 +5,7 @@ /* */ /* OpenPOWER OnChipController Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2015 */ +/* Contributors Listed Below - COPYRIGHT 2015,2016 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -22,13 +22,6 @@ /* permissions and limitations under the License. */ /* */ /* IBM_PROLOG_END_TAG */ -// $Id: memcpy.c,v 1.1.1.1 2013/12/11 20:49:20 bcbrock Exp $ -// $Source: /afs/awd/projects/eclipz/KnowledgeBase/.cvsroot/eclipz/chips/p8/working/procedures/lib/memcpy.c,v $ -//----------------------------------------------------------------------------- -// *! (C) Copyright International Business Machines Corp. 2013 -// *! All Rights Reserved -- Property of IBM -// *! *** IBM Confidential *** -//----------------------------------------------------------------------------- /// \file memcpy.c /// \brief The memcpy() function diff --git a/src/lib/common/memset.c b/src/lib/common/memset.c index 1d98677..b8e67f1 100644 --- a/src/lib/common/memset.c +++ b/src/lib/common/memset.c @@ -5,7 +5,7 @@ /* */ /* OpenPOWER OnChipController Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2015 */ +/* Contributors Listed Below - COPYRIGHT 2015,2016 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -22,13 +22,6 @@ /* permissions and limitations under the License. */ /* */ /* IBM_PROLOG_END_TAG */ -// $Id: memset.c,v 1.1.1.1 2013/12/11 20:49:20 bcbrock Exp $ -// $Source: /afs/awd/projects/eclipz/KnowledgeBase/.cvsroot/eclipz/chips/p8/working/procedures/lib/memset.c,v $ -//----------------------------------------------------------------------------- -// *! (C) Copyright International Business Machines Corp. 2013 -// *! All Rights Reserved -- Property of IBM -// *! *** IBM Confidential *** -//----------------------------------------------------------------------------- /// \file memset.c /// \brief The memset() function diff --git a/src/lib/common/string.c b/src/lib/common/string.c index 7c82653..2f0c361 100644 --- a/src/lib/common/string.c +++ b/src/lib/common/string.c @@ -5,7 +5,7 @@ /* */ /* OpenPOWER OnChipController Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2015 */ +/* Contributors Listed Below - COPYRIGHT 2015,2016 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -22,11 +22,6 @@ /* permissions and limitations under the License. */ /* */ /* IBM_PROLOG_END_TAG */ -//----------------------------------------------------------------------------- -// *! (C) Copyright International Business Machines Corp. 2013 -// *! All Rights Reserved -- Property of IBM -// *! *** IBM Confidential *** -//----------------------------------------------------------------------------- /// \file string.c /// \brief strlen(), strcmp() etc. functions diff --git a/src/lib/common/string.h b/src/lib/common/string.h index 71f54c9..9cf59a5 100644 --- a/src/lib/common/string.h +++ b/src/lib/common/string.h @@ -5,7 +5,7 @@ /* */ /* OpenPOWER OnChipController Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2015 */ +/* Contributors Listed Below - COPYRIGHT 2015,2016 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -25,14 +25,6 @@ #ifndef __STRING_H__ #define __STRING_H__ -// $Id: string.h,v 1.1.1.1 2013/12/11 20:49:20 bcbrock Exp $ -// $Source: /afs/awd/projects/eclipz/KnowledgeBase/.cvsroot/eclipz/chips/p8/working/procedures/lib/string.h,v $ -//----------------------------------------------------------------------------- -// *! (C) Copyright International Business Machines Corp. 2013 -// *! All Rights Reserved -- Property of IBM -// *! *** IBM Confidential *** -//----------------------------------------------------------------------------- - /// \file string.h /// \brief Replacement for <string.h> /// |

