From patchwork Tue Feb 25 09:32:34 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Will Newton X-Patchwork-Id: 323883 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 CF54D2C0227 for ; Tue, 25 Feb 2014 20:33:30 +1100 (EST) Received: from localhost ([::1]:33834 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WIEOG-0003ia-83 for incoming@patchwork.ozlabs.org; Tue, 25 Feb 2014 04:33:28 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46991) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WIENe-0003iB-Ma for qemu-devel@nongnu.org; Tue, 25 Feb 2014 04:32:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WIENY-0001zU-SI for qemu-devel@nongnu.org; Tue, 25 Feb 2014 04:32:50 -0500 Received: from mail-wg0-f46.google.com ([74.125.82.46]:57274) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WIENY-0001zO-ML for qemu-devel@nongnu.org; Tue, 25 Feb 2014 04:32:44 -0500 Received: by mail-wg0-f46.google.com with SMTP id z12so106118wgg.29 for ; Tue, 25 Feb 2014 01:32:44 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=tbHGE4aLt9p11tBE4DMFl2Lf+9w3l6jpYB/hFrDPKpg=; b=h26gQVuIDv7Ufljt8OAqR1gnzRmlhK3UpsgTgmtE4Br+yNmHe0I8g+gal93RnOFdWf tsWalilSMC0Yx6UC25gj/K6GDU4kzuW0QpOJskvbw+UqRbWqFV8F5Ya+yeVC2Vl9SMc3 6oGHQ22lteLUkoN67s5FEqNwMFSBHtFnYRRkVF/MBtrY2w1d+j8PzLFZIZG+HMbnYcGj l+SIvLRUlgblZzL68Cl6F3kXqdDqTzgRr4Pw1hCKw97eMrgItD0nxhNcfujNr83nJ15o p5SOyI+xf+938G0u9AvKXZdWBH1zzHKJf3emFz2asqhBGEKoV4MHParyERS8g4AEdDTa 73vA== X-Gm-Message-State: ALoCoQkW6TATdh86XC56kTsH3rWyA/OaAvz2fGo5Xh1KtpFJDXKP3GjD0QaOw15dGfjTf1GWR6WT X-Received: by 10.180.38.41 with SMTP id d9mr1617649wik.9.1393320761547; Tue, 25 Feb 2014 01:32:41 -0800 (PST) Received: from localhost.localdomain (cpc6-seac21-2-0-cust453.7-2.cable.virginm.net. [82.1.113.198]) by mx.google.com with ESMTPSA id fo6sm32290408wib.7.2014.02.25.01.32.40 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 25 Feb 2014 01:32:40 -0800 (PST) From: Will Newton To: qemu-devel@nongnu.org Date: Tue, 25 Feb 2014 09:32:34 +0000 Message-Id: <1393320755-23906-2-git-send-email-will.newton@linaro.org> X-Mailer: git-send-email 1.8.1.4 In-Reply-To: <1393320755-23906-1-git-send-email-will.newton@linaro.org> References: <1393320755-23906-1-git-send-email-will.newton@linaro.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 74.125.82.46 Subject: [Qemu-devel] [PATCH v3 1/2] include/qemu/crc32c.h: Rename include guards to match filename 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 Signed-off-by: Will Newton Reviewed-by: Peter Maydell --- include/qemu/crc32c.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Changes in v3: - None diff --git a/include/qemu/crc32c.h b/include/qemu/crc32c.h index 56d1c3b..dafb6a1 100644 --- a/include/qemu/crc32c.h +++ b/include/qemu/crc32c.h @@ -25,8 +25,8 @@ * */ -#ifndef QEMU_CRC32_H -#define QEMU_CRC32_H +#ifndef QEMU_CRC32C_H +#define QEMU_CRC32C_H #include "qemu-common.h"