Using new-style return values for spci_yield.

Bug: 132395846
Change-Id: I6af4343c3f84e90e1fee608988585e9eaf2ee6d4
diff --git a/inc/hf/api.h b/inc/hf/api.h
index 7dcdad3..cc45a05 100644
--- a/inc/hf/api.h
+++ b/inc/hf/api.h
@@ -57,7 +57,7 @@
 spci_return_t api_spci_msg_send(uint32_t attributes, struct vcpu *current,
 				struct vcpu **next);
 int32_t api_spci_msg_recv(bool block, struct vcpu *current, struct vcpu **next);
-int32_t api_spci_yield(struct vcpu *current, struct vcpu **next);
+void api_yield(struct vcpu *current, struct vcpu **next);
 struct spci_value api_spci_version(void);
 spci_return_t api_spci_share_memory(struct vm_locked to_locked,
 				    struct vm_locked from_locked,