summaryrefslogtreecommitdiffstats
path: root/arch/x86/cpu/qemu
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-08-10 07:05:08 -0600
committerSimon Glass <sjg@chromium.org>2015-08-14 03:24:21 -0600
commit7e4be120e88974d49ebb4bcf837134cfb71efc8c (patch)
tree0f51a3f0d1447962b9b0f8cb5a9c6c3b5604e40f /arch/x86/cpu/qemu
parent412400abaaa6ef02adff35419188689ea6d3ec7e (diff)
downloadblackbird-obmc-uboot-7e4be120e88974d49ebb4bcf837134cfb71efc8c.tar.gz
blackbird-obmc-uboot-7e4be120e88974d49ebb4bcf837134cfb71efc8c.zip
x86: Allow pirq_init() to return an error
This function can fail. In this case we should return the error rather than swallowing it. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/cpu/qemu')
-rw-r--r--arch/x86/cpu/qemu/qemu.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/cpu/qemu/qemu.c b/arch/x86/cpu/qemu/qemu.c
index 64634a9229..7c03e0295b 100644
--- a/arch/x86/cpu/qemu/qemu.c
+++ b/arch/x86/cpu/qemu/qemu.c
@@ -41,7 +41,5 @@ void reset_cpu(ulong addr)
int arch_misc_init(void)
{
- pirq_init();
-
- return 0;
+ return pirq_init();
}
OpenPOWER on IntegriCloud