From patchwork Fri Oct 21 16:26:33 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 121030 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 3E2031007D1 for ; Sat, 22 Oct 2011 04:39:23 +1100 (EST) Received: from localhost ([::1]:59619 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RHHwL-0004sE-MX for incoming@patchwork.ozlabs.org; Fri, 21 Oct 2011 12:27:25 -0400 Received: from eggs.gnu.org ([140.186.70.92]:33473) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RHHvs-0003z0-9B for qemu-devel@nongnu.org; Fri, 21 Oct 2011 12:26:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RHHvq-0007PT-7c for qemu-devel@nongnu.org; Fri, 21 Oct 2011 12:26:56 -0400 Received: from mail-wy0-f173.google.com ([74.125.82.173]:62682) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RHHvq-0007PA-35 for qemu-devel@nongnu.org; Fri, 21 Oct 2011 12:26:54 -0400 Received: by wyh15 with SMTP id 15so4719084wyh.4 for ; Fri, 21 Oct 2011 09:26:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:from:to:subject:date:message-id:x-mailer:in-reply-to :references; bh=mOfy14TwlptK9nGmhTw8VBzkfGGQBdABgYifTC+yvYw=; b=EipbgmZ4lFepKmOLdsliMwrEkpFKTRM8h9UVWaV0sE6a8y8YEhyzCwRrTftw5kya5f 5bijukc/PwubioVW56s9jiWfKELqFS/ALalcrt4SSjbGVa6ZoXrQbkmIoH6QbxQAkwoq AsR3e3ZgcEv0vClJ+LW/K6F3N3Q1X6wG3hy7E= Received: by 10.227.10.31 with SMTP id n31mr5643308wbn.57.1319214412525; Fri, 21 Oct 2011 09:26:52 -0700 (PDT) Received: from localhost.localdomain (93-34-199-98.ip51.fastwebnet.it. [93.34.199.98]) by mx.google.com with ESMTPS id b5sm22704403wbh.4.2011.10.21.09.26.50 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 21 Oct 2011 09:26:51 -0700 (PDT) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Fri, 21 Oct 2011 18:26:33 +0200 Message-Id: <1319214405-20388-2-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.7.6 In-Reply-To: <1319214405-20388-1-git-send-email-pbonzini@redhat.com> References: <1319214405-20388-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 74.125.82.173 Subject: [Qemu-devel] [PATCH v3 01/13] remove unused function 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 Reviewed-by: Anthony Liguori Signed-off-by: Paolo Bonzini --- hw/mac_dbdma.c | 5 ----- hw/mac_dbdma.h | 1 - 2 files changed, 0 insertions(+), 6 deletions(-) diff --git a/hw/mac_dbdma.c b/hw/mac_dbdma.c index 5affdd1..1791ec1 100644 --- a/hw/mac_dbdma.c +++ b/hw/mac_dbdma.c @@ -661,11 +661,6 @@ void DBDMA_register_channel(void *dbdma, int nchan, qemu_irq irq, ch->io.channel = ch; } -void DBDMA_schedule(void) -{ - qemu_notify_event(); -} - static void dbdma_control_write(DBDMA_channel *ch) { diff --git a/hw/mac_dbdma.h b/hw/mac_dbdma.h index 933e17c..6d1abe6 100644 --- a/hw/mac_dbdma.h +++ b/hw/mac_dbdma.h @@ -41,5 +41,4 @@ struct DBDMA_io { void DBDMA_register_channel(void *dbdma, int nchan, qemu_irq irq, DBDMA_rw rw, DBDMA_flush flush, void *opaque); -void DBDMA_schedule(void); void* DBDMA_init (MemoryRegion **dbdma_mem);