From patchwork Mon Sep 17 08:47:35 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Peter A. G. Crosthwaite" X-Patchwork-Id: 184321 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 0D1332C007E for ; Mon, 17 Sep 2012 18:49:24 +1000 (EST) Received: from localhost ([::1]:54864 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TDX18-0008Dr-7f for incoming@patchwork.ozlabs.org; Mon, 17 Sep 2012 04:49:22 -0400 Received: from eggs.gnu.org ([208.118.235.92]:39061) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TDX0N-0006Ko-TX for qemu-devel@nongnu.org; Mon, 17 Sep 2012 04:48:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TDX0H-00046b-Vt for qemu-devel@nongnu.org; Mon, 17 Sep 2012 04:48:35 -0400 Received: from mail-iy0-f173.google.com ([209.85.210.173]:64764) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TDX0H-0003sv-Qy for qemu-devel@nongnu.org; Mon, 17 Sep 2012 04:48:29 -0400 Received: by mail-iy0-f173.google.com with SMTP id x26so4924724iak.4 for ; Mon, 17 Sep 2012 01:48:29 -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:in-reply-to:references :in-reply-to:references:x-gm-message-state; bh=OdVYBOvpcI/Mh3+XJYSSYK8irPbl88k983qkkTIzyG0=; b=jepvCt8dOwIH8V5osB0Hsm53NGXwaBNw6W7sKYYXBGViE47m7sI0j4sRBTU20HMylu HS2NnnaImr0YxeTI7+vDs9FjNzoRhBlRgtokB+x9nSfrxfR6xMysrBuRJLh8+RV4BMZE x5hOSbUAzjgGkWAX3hozQMi3Gt/22t8n2J57BQSLNCLE/7ANkHsmmhiQcEy6zNCzAJGm gmbGStw4ApzrU8cQBuED3ZTliN0IlzybIK4vA2aRtwNLQKI0m0IWmdzBsssAcTs44TbK EptzVOzkJrEstoipq5EUfscAwHzhtCkepHbO/K8MTCq95KT1jNygA2lvQhrW6G1Du13h hWew== Received: by 10.50.159.130 with SMTP id xc2mr6004410igb.33.1347871709502; Mon, 17 Sep 2012 01:48:29 -0700 (PDT) Received: from localhost ([124.148.20.9]) by mx.google.com with ESMTPS id ce10sm9161524igb.1.2012.09.17.01.48.26 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 17 Sep 2012 01:48:28 -0700 (PDT) From: "Peter A. G. Crosthwaite" To: qemu-devel@nongnu.org, edgar.iglesias@gmail.com Date: Mon, 17 Sep 2012 18:47:35 +1000 Message-Id: X-Mailer: git-send-email 1.7.0.4 In-Reply-To: References: In-Reply-To: References: X-Gm-Message-State: ALoCoQnX8hPP2Wguo3f2LGmE1ColoK6zSoGTh6nodSu5m+NRQUT0gNMUekyfNjoJ16P7z2OrOetW X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.210.173 Cc: peter.crosthwaite@petalogix.com, crwulff@gmail.com Subject: [Qemu-devel] [PATCH v1 5/6] xilinx: fix names of ethernet and dma links. 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 These names were incorrect. Fixed to match to actual link names Signed-off-by: Peter A. G. Crosthwaite --- hw/xilinx.h | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/hw/xilinx.h b/hw/xilinx.h index 4d29265..6449bd4 100644 --- a/hw/xilinx.h +++ b/hw/xilinx.h @@ -63,7 +63,8 @@ xilinx_axiethernet_create(NICInfo *nd, StreamSlave *peer, qdev_set_nic_properties(dev, nd); qdev_prop_set_uint32(dev, "rxmem", rxmem); qdev_prop_set_uint32(dev, "txmem", txmem); - object_property_set_link(OBJECT(dev), OBJECT(peer), "tx_dev", &errp); + object_property_set_link(OBJECT(dev), OBJECT(peer), "axistream-connected", + &errp); assert_no_error(errp); qdev_init_nofail(dev); sysbus_mmio_map(sysbus_from_qdev(dev), 0, base); @@ -80,7 +81,8 @@ xilinx_axiethernetdma_init(DeviceState *dev, StreamSlave *peer, Error *errp = NULL; qdev_prop_set_uint32(dev, "freqhz", freqhz); - object_property_set_link(OBJECT(dev), OBJECT(peer), "tx_dev", &errp); + object_property_set_link(OBJECT(dev), OBJECT(peer), "axistream-connected", + &errp); assert_no_error(errp); qdev_init_nofail(dev);