Skip to content

Commit

Permalink
PPC: KVM: Compile fix for qemu_notify_event
Browse files Browse the repository at this point in the history
The function qemu_notify_event is defined by a header that we don't
include in the PPC KVM code. Include it to get the code building
again.

  target-ppc/kvm_ppc.c: In function 'kvmppc_timer_hack':
  target-ppc/kvm_ppc.c:26:5: error: implicit declaration of function 'qemu_notify_event' [-Werror=implicit-function-declaration]
  target-ppc/kvm_ppc.c:26:5: error: nested extern declaration of 'qemu_notify_event' [-Werror=nested-externs]

Signed-off-by: Alexander Graf <agraf@suse.de>
  • Loading branch information
agraf committed Sep 2, 2013
1 parent 42561bf commit 7bb438b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions target-ppc/kvm_ppc.c
Expand Up @@ -15,6 +15,7 @@
#include "qemu/timer.h"
#include "kvm_ppc.h"
#include "sysemu/device_tree.h"
#include "qemu/main-loop.h"

#define PROC_DEVTREE_PATH "/proc/device-tree"

Expand Down

0 comments on commit 7bb438b

Please sign in to comment.