From patchwork Mon Jun 13 09:44:57 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tokarev X-Patchwork-Id: 634473 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 3rSp6L394Zz9t0Y for ; Mon, 13 Jun 2016 19:54:50 +1000 (AEST) Received: from localhost ([::1]:54863 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCOa0-0007dj-DA for incoming@patchwork.ozlabs.org; Mon, 13 Jun 2016 05:54:48 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48898) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCOQk-00005O-EB for qemu-devel@nongnu.org; Mon, 13 Jun 2016 05:45:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bCOQh-0002xF-9M for qemu-devel@nongnu.org; Mon, 13 Jun 2016 05:45:14 -0400 Received: from isrv.corpit.ru ([86.62.121.231]:52483) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bCOQh-0002ou-12; Mon, 13 Jun 2016 05:45:11 -0400 Received: from tsrv.tls.msk.ru (tsrv.tls.msk.ru [192.168.177.2]) by isrv.corpit.ru (Postfix) with ESMTP id 4C50341126; Mon, 13 Jun 2016 12:44:59 +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 AA915AAB; Mon, 13 Jun 2016 12:44:58 +0300 (MSK) Received: (nullmailer pid 29397 invoked by uid 1000); Mon, 13 Jun 2016 09:44:58 -0000 From: Michael Tokarev To: qemu-trivial@nongnu.org Date: Mon, 13 Jun 2016 12:44:57 +0300 Message-Id: <1465811098-29354-1-git-send-email-mjt@msgid.tls.msk.ru> X-Mailer: git-send-email 2.1.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 86.62.121.231 Subject: [Qemu-devel] [PATCH trivial 1/2] hw/bt/hci: spelling fix: endianness X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Tokarev , qemu-devel@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" Signed-off-by: Michael Tokarev --- hw/bt/hci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/bt/hci.c b/hw/bt/hci.c index 7d52205..963f683 100644 --- a/hw/bt/hci.c +++ b/hw/bt/hci.c @@ -421,7 +421,7 @@ static void bt_submit_raw_acl(struct bt_piconet_s *net, int length, uint8_t *dat /* HCI layer emulation */ -/* Note: we could ignore endiannes because unswapped handles will still +/* Note: we could ignore endianness because unswapped handles will still * be valid as connection identifiers for the guest - they don't have to * be continuously allocated. We do it though, to preserve similar * behaviour between hosts. Some things, like the BD_ADDR cannot be