Fix build break in linux driver.

Without this fix we get a "function declaration isn't a prototype" error
when building the driver.

Change-Id: I339337ff51bcab6d0b81f0e3067a5ce8f8ae0a44
diff --git a/inc/vmapi/hf/call.h b/inc/vmapi/hf/call.h
index a8904b6..d059196 100644
--- a/inc/vmapi/hf/call.h
+++ b/inc/vmapi/hf/call.h
@@ -50,7 +50,7 @@
 /**
  * Returns the VM's own ID.
  */
-static inline uint32_t hf_vm_get_id()
+static inline uint32_t hf_vm_get_id(void)
 {
 	return hf_call(HF_VM_GET_ID, 0, 0, 0);
 }