diff options
author | Patrick Williams <iawillia@us.ibm.com> | 2012-11-05 10:23:25 -0600 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2012-12-14 11:24:36 -0600 |
commit | 950ddd853b2044956d82d17ae67bfe222e49fded (patch) | |
tree | 8e5ce7943e61099ecb5b86828f706ecd6fa672d3 /src/usr/i2c/eepromdd.C | |
parent | 72c7d197703ed889940358611d8164d176af7c65 (diff) | |
download | blackbird-hostboot-950ddd853b2044956d82d17ae67bfe222e49fded.tar.gz blackbird-hostboot-950ddd853b2044956d82d17ae67bfe222e49fded.zip |
Reduce trace buffer sizes.
Change-Id: I13a80f814fd13a30315320c0b0c7374f39c3ecc2
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/2522
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Tested-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/i2c/eepromdd.C')
-rwxr-xr-x | src/usr/i2c/eepromdd.C | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/src/usr/i2c/eepromdd.C b/src/usr/i2c/eepromdd.C index 1102cb26b..c4a785c30 100755 --- a/src/usr/i2c/eepromdd.C +++ b/src/usr/i2c/eepromdd.C @@ -1,25 +1,25 @@ -// IBM_PROLOG_BEGIN_TAG -// This is an automatically generated prolog. -// -// $Source: src/usr/i2c/eepromdd.C $ -// -// IBM CONFIDENTIAL -// -// COPYRIGHT International Business Machines Corp. 2011 -// -// p1 -// -// Object Code Only (OCO) source materials -// Licensed Internal Code Source Materials -// IBM HostBoot Licensed Internal Code -// -// The source code for this program is not published or other- -// wise divested of its trade secrets, irrespective of what has -// been deposited with the U.S. Copyright Office. -// -// Origin: 30 -// -// IBM_PROLOG_END +/* IBM_PROLOG_BEGIN_TAG */ +/* This is an automatically generated prolog. */ +/* */ +/* $Source: src/usr/i2c/eepromdd.C $ */ +/* */ +/* IBM CONFIDENTIAL */ +/* */ +/* COPYRIGHT International Business Machines Corp. 2011,2012 */ +/* */ +/* p1 */ +/* */ +/* Object Code Only (OCO) source materials */ +/* Licensed Internal Code Source Materials */ +/* IBM HostBoot Licensed Internal Code */ +/* */ +/* The source code for this program is not published or otherwise */ +/* divested of its trade secrets, irrespective of what has been */ +/* deposited with the U.S. Copyright Office. */ +/* */ +/* Origin: 30 */ +/* */ +/* IBM_PROLOG_END_TAG */ /** * @file eepromdd.C * @@ -52,10 +52,10 @@ mutex_t g_eepromMutex = MUTEX_INITIALIZER; // Trace definitions // ---------------------------------------------- trace_desc_t* g_trac_eeprom = NULL; -TRAC_INIT( & g_trac_eeprom, "EEPROM", 4096 ); +TRAC_INIT( & g_trac_eeprom, "EEPROM", KILOBYTE ); trace_desc_t* g_trac_eepromr = NULL; -TRAC_INIT( & g_trac_eepromr, "EEPROMR", 4096 ); +TRAC_INIT( & g_trac_eepromr, "EEPROMR", KILOBYTE ); // Easy macro replace for unit testing //#define TRACUCOMP(args...) TRACFCOMP(args) |