Skip to content

Commit

Permalink
hw/intc/arm_gicv3: Fix compilation with simple trace backend
Browse files Browse the repository at this point in the history
Fix missing includes of qemu/log.h, which broke compilation with the
simple trace backend (the default backend pulls in log.h implicitly
via trace.h).

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Sergey Fedorov <sergey.fedorov@linaro.org>
Tested-by: Sergey Fedorov <sergey.fedorov@linaro.org>
Message-id: 1466416634-9798-1-git-send-email-peter.maydell@linaro.org
  • Loading branch information
pm215 committed Jun 20, 2016
1 parent 482b618 commit b1e3493
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions hw/intc/arm_gicv3_dist.c
Expand Up @@ -10,6 +10,7 @@
*/

#include "qemu/osdep.h"
#include "qemu/log.h"
#include "trace.h"
#include "gicv3_internal.h"

Expand Down
1 change: 1 addition & 0 deletions hw/intc/arm_gicv3_redist.c
Expand Up @@ -10,6 +10,7 @@
*/

#include "qemu/osdep.h"
#include "qemu/log.h"
#include "trace.h"
#include "gicv3_internal.h"

Expand Down

0 comments on commit b1e3493

Please sign in to comment.