From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:58238) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1US2t0-000615-91 for qemu-devel@nongnu.org; Tue, 16 Apr 2013 06:13:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1US2sy-0003cV-NF for qemu-devel@nongnu.org; Tue, 16 Apr 2013 06:13:14 -0400 Received: from mx1.redhat.com ([209.132.183.28]:16201) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1US2sy-0003bt-Ev for qemu-devel@nongnu.org; Tue, 16 Apr 2013 06:13:12 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3GADBxc025197 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 16 Apr 2013 06:13:11 -0400 From: Gerd Hoffmann Date: Tue, 16 Apr 2013 12:13:06 +0200 Message-Id: <1366107190-30853-4-git-send-email-kraxel@redhat.com> In-Reply-To: <1366107190-30853-1-git-send-email-kraxel@redhat.com> References: <1366107190-30853-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 3/7] xhci: add xhci_cap_write List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- hw/usb/hcd-xhci.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c index c0dbc54..7f740d9 100644 --- a/hw/usb/hcd-xhci.c +++ b/hw/usb/hcd-xhci.c @@ -3079,8 +3079,15 @@ static void xhci_doorbell_write(void *ptr, hwaddr reg, } } +static void xhci_cap_write(void *opaque, hwaddr addr, uint64_t val, + unsigned width) +{ + /* nothing */ +} + static const MemoryRegionOps xhci_cap_ops = { .read = xhci_cap_read, + .write = xhci_cap_write, .valid.min_access_size = 1, .valid.max_access_size = 4, .impl.min_access_size = 4, -- 1.7.9.7