From patchwork Mon Jul 27 19:54:06 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tokarev X-Patchwork-Id: 500633 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 344FD140D24 for ; Tue, 28 Jul 2015 06:01:21 +1000 (AEST) Received: from localhost ([::1]:55368 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZJoaN-0002BD-Rb for incoming@patchwork.ozlabs.org; Mon, 27 Jul 2015 16:01:19 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59588) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZJoZo-00018U-52 for qemu-devel@nongnu.org; Mon, 27 Jul 2015 16:00:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZJoZk-0005Vs-02 for qemu-devel@nongnu.org; Mon, 27 Jul 2015 16:00:44 -0400 Received: from isrv.corpit.ru ([86.62.121.231]:40803) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZJoZj-0005VG-8K; Mon, 27 Jul 2015 16:00:39 -0400 Received: from tsrv.tls.msk.ru (tsrv.tls.msk.ru [192.168.177.2]) by isrv.corpit.ru (Postfix) with ESMTP id DF401425B4; Mon, 27 Jul 2015 23:00:37 +0300 (MSK) Received: from tls.msk.ru (mjt.vpn.tls.msk.ru [192.168.177.99]) by tsrv.tls.msk.ru (Postfix) with SMTP id 47554A68; Mon, 27 Jul 2015 22:54:21 +0300 (MSK) Received: (nullmailer pid 9521 invoked by uid 1000); Mon, 27 Jul 2015 19:54:20 -0000 From: Michael Tokarev To: qemu-devel@nongnu.org Date: Mon, 27 Jul 2015 22:54:06 +0300 Message-Id: X-Mailer: git-send-email 2.1.4 In-Reply-To: References: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 86.62.121.231 Cc: qemu-trivial@nongnu.org, Michael Tokarev , Kamalesh Babulal Subject: [Qemu-devel] [PULL 03/10] device_tree: Fix a typo 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 From: Kamalesh Babulal Fix spelling of 'allocting' -> 'allocating'. Signed-off-by: Kamalesh Babulal Signed-off-by: Michael Tokarev --- device_tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/device_tree.c b/device_tree.c index d2de580..a9f5f8e 100644 --- a/device_tree.c +++ b/device_tree.c @@ -241,7 +241,7 @@ uint32_t qemu_fdt_alloc_phandle(void *fdt) /* * We need to find out if the user gave us special instruction at - * which phandle id to start allocting phandles. + * which phandle id to start allocating phandles. */ if (!phandle) { phandle = machine_phandle_start(current_machine);