diff options
author | Stewart Smith <stewart@linux.vnet.ibm.com> | 2015-05-07 17:11:40 +1000 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2015-05-15 07:58:18 +1000 |
commit | e64108422a2c3f605ecabf088d25509073b4cf7d (patch) | |
tree | b6efd3de2515a4b95960290eadb2e72d47fcbfd2 /asm | |
parent | f7fa97c15ae443e051b3dfad57e183b05e400e04 (diff) | |
download | skiboot-e64108422a2c3f605ecabf088d25509073b4cf7d.zip skiboot-e64108422a2c3f605ecabf088d25509073b4cf7d.tar.gz skiboot-e64108422a2c3f605ecabf088d25509073b4cf7d.tar.bz2 |
Make relocate() return specific error as to what went wrong
Useful in debugging odd problems, such as skiboot > 1MB.
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'asm')
-rw-r--r-- | asm/head.S | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -438,7 +438,7 @@ call_relocate: mr %r3,%r30 bl relocate cmpwi %r3,0 - beq 1f + bne 1f mtlr %r14 blr 1: /* Fatal relocate failure */ |