From patchwork Thu May 30 09:25:33 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexey Kardashevskiy X-Patchwork-Id: 247502 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id BB0002C0082 for ; Thu, 30 May 2013 19:26:14 +1000 (EST) Received: from localhost ([::1]:35788 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uhz7c-0002o8-Dp for incoming@patchwork.ozlabs.org; Thu, 30 May 2013 05:26:12 -0400 Received: from eggs.gnu.org ([208.118.235.92]:49133) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uhz7H-0002nj-3P for qemu-devel@nongnu.org; Thu, 30 May 2013 05:25:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Uhz7C-0004Ev-2n for qemu-devel@nongnu.org; Thu, 30 May 2013 05:25:51 -0400 Received: from mail-yh0-x229.google.com ([2607:f8b0:4002:c01::229]:41485) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uhz7B-0004Ei-Ru for qemu-devel@nongnu.org; Thu, 30 May 2013 05:25:45 -0400 Received: by mail-yh0-f41.google.com with SMTP id z12so1696yhz.14 for ; Thu, 30 May 2013 02:25:44 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:x-gm-message-state; bh=yKS3EqKHihTJg3lDRuoqNmZBmqovIka1fblksoR0rJE=; b=LgLQngNk6EySkajbTRZf8xI8wVflz56wYFZC6uqHEzLZg6qr5Cc4ncMBPRXaJDzPZz shQJevm3Tv4+BXQi8PNVsGv6CmC4iN62rrKzADY1S0GBGc+gGcpgnSM6Tx3E4DhFGzIb FrT22VzKHtzrdLVFadtE7jrCaLifsDgcK3DFgJzGnzwjcNSR3TJeknww9uuvEKYnWGlD 7sgQY9/+F+A9Np3VIqa7Q9QzDOmzP0+nXZlihnu2SUCNAkTDBd09I78RaND1/jmC4/xo pj9ZsHMEVT97g3W3IKw/lQq/7pYS66aVzgL3td6+mXu69YfXGnvWE8jjad1x5RxXIqly HCrQ== X-Received: by 10.236.148.162 with SMTP id v22mr3093192yhj.131.1369905944506; Thu, 30 May 2013 02:25:44 -0700 (PDT) Received: from ka1.ozlabs.ibm.com (ibmaus65.lnk.telstra.net. [165.228.126.9]) by mx.google.com with ESMTPSA id a24sm58616043yho.24.2013.05.30.02.25.40 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 30 May 2013 02:25:43 -0700 (PDT) From: Alexey Kardashevskiy To: qemu-devel@nongnu.org Date: Thu, 30 May 2013 19:25:33 +1000 Message-Id: <1369905933-27199-1-git-send-email-aik@ozlabs.ru> X-Mailer: git-send-email 1.7.10.4 X-Gm-Message-State: ALoCoQkueC6ecI5W6l+8XuVs4e1dz3ES2ZX/qZEJKnMUHRaWWTFHOL1FgHjmiyxrEGQp10fzuusi X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:4002:c01::229 Cc: Alexey Kardashevskiy , qemu-ppc@nongnu.org, Alexander Graf , David Gibson Subject: [Qemu-devel] [PATCH] target-ppc kvm: missing kvm_arch_init_irq_routing X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org This adds an empty stub to make the compiler happy. Signed-off-by: Alexey Kardashevskiy --- target-ppc/kvm.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/target-ppc/kvm.c b/target-ppc/kvm.c index 3ab2946..2bbc3b8 100644 --- a/target-ppc/kvm.c +++ b/target-ppc/kvm.c @@ -1797,3 +1797,7 @@ int kvm_arch_on_sigbus(int code, void *addr) { return 1; } + +void kvm_arch_init_irq_routing(KVMState *s) +{ +}