Andrew Geissler | 19d408c | 2015-02-28 13:51:47 -0600 | [diff] [blame] | 1 | From de6b906bd93e0928cd5464418091268aa7a5ac78 Mon Sep 17 00:00:00 2001 |
| 2 | From: Corey Swenson <cswenson@us.ibm.com> |
| 3 | Date: Fri, 27 Feb 2015 09:45:47 -0600 |
| 4 | Subject: [PATCH 1/3] Disable SPD writes - workaround for DRAM repairs error |
| 5 | |
| 6 | Change-Id: Ic5fac400abff8fef004268dfbdf33fa6ecdded1c |
| 7 | (cherry picked from commit 1bc5bb42be8e81b525993e9b5dcf08fe684bade4) |
| 8 | --- |
| 9 | src/usr/vpd/spd.C | 1 + |
| 10 | 1 files changed, 1 insertions(+), 0 deletions(-) |
| 11 | |
| 12 | diff --git a/src/usr/vpd/spd.C b/src/usr/vpd/spd.C |
| 13 | index 54837a5..e101ff0 100644 |
| 14 | --- a/src/usr/vpd/spd.C |
| 15 | +++ b/src/usr/vpd/spd.C |
| 16 | @@ -323,6 +323,7 @@ errlHndl_t spdWriteKeywordValue ( DeviceFW::OperationType i_opType, |
| 17 | va_list i_args ) |
| 18 | { |
| 19 | errlHndl_t err = NULL; |
| 20 | + return err; |
| 21 | VPD::vpdKeyword keyword = va_arg( i_args, uint64_t ); |
| 22 | VPD::vpdCmdTarget location = |
| 23 | (VPD::vpdCmdTarget)va_arg( i_args, uint64_t ); |
| 24 | -- |
| 25 | 1.7.4.1 |
| 26 | |