From patchwork Fri Jun 19 14:17:23 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Armbruster X-Patchwork-Id: 486732 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 105C614012C for ; Sat, 20 Jun 2015 00:18:10 +1000 (AEST) Received: from localhost ([::1]:58334 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z5x7Q-0005Ut-Pm for incoming@patchwork.ozlabs.org; Fri, 19 Jun 2015 10:18:08 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47541) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z5x6t-0004bR-O0 for qemu-devel@nongnu.org; Fri, 19 Jun 2015 10:17:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z5x6q-0002Vs-H5 for qemu-devel@nongnu.org; Fri, 19 Jun 2015 10:17:35 -0400 Received: from mx1.redhat.com ([209.132.183.28]:34715) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z5x6q-0002Vc-BK for qemu-devel@nongnu.org; Fri, 19 Jun 2015 10:17:32 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id 69A7AB8BC3; Fri, 19 Jun 2015 14:17:31 +0000 (UTC) Received: from blackfin.pond.sub.org (ovpn-116-24.ams2.redhat.com [10.36.116.24]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t5JEHTWh028966 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 19 Jun 2015 10:17:31 -0400 Received: by blackfin.pond.sub.org (Postfix, from userid 1000) id 133A9303F16B; Fri, 19 Jun 2015 16:17:29 +0200 (CEST) From: Markus Armbruster To: qemu-devel@nongnu.org Date: Fri, 19 Jun 2015 16:17:23 +0200 Message-Id: <1434723448-24879-3-git-send-email-armbru@redhat.com> In-Reply-To: <1434723448-24879-1-git-send-email-armbru@redhat.com> References: <1434723448-24879-1-git-send-email-armbru@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: pbonzini@redhat.com, afaerber@suse.de, kraxel@redhat.com Subject: [Qemu-devel] [PATCH v3 2/7] qdev: Un-deprecate qdev_init_nofail() 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 It's a perfectly sensible helper function. Signed-off-by: Markus Armbruster Reviewed-by: Eric Blake --- include/hw/qdev-core.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/hw/qdev-core.h b/include/hw/qdev-core.h index 5789b91..b736b03 100644 --- a/include/hw/qdev-core.h +++ b/include/hw/qdev-core.h @@ -65,8 +65,8 @@ struct VMStateDescription; * Operations depending on @props static properties should go into @realize. * After successful realization, setting static properties will fail. * - * As an interim step, the #DeviceState:realized property is set by deprecated - * function qdev_init_nofail(). + * As an interim step, the #DeviceState:realized property can also be + * set with qdev_init_nofail(). * In the future, devices will propagate this state change to their children * and along busses they expose. * The point in time will be deferred to machine creation, so that values