From patchwork Thu May 14 18:53:02 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 472494 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 07C421401DA for ; Fri, 15 May 2015 04:54:19 +1000 (AEST) Received: from localhost ([::1]:56349 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YsyGv-0007w6-5v for incoming@patchwork.ozlabs.org; Thu, 14 May 2015 14:54:17 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58909) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YsyGH-0006eL-SK for qemu-devel@nongnu.org; Thu, 14 May 2015 14:53:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YsyGG-0007wq-Jo for qemu-devel@nongnu.org; Thu, 14 May 2015 14:53:37 -0400 Received: from mx1.redhat.com ([209.132.183.28]:52790) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YsyGG-0007wC-CX; Thu, 14 May 2015 14:53:36 -0400 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t4EIrZTl006314 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 14 May 2015 14:53:35 -0400 Received: from localhost (ovpn-113-178.phx2.redhat.com [10.3.113.178]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t4EIrYpY010355; Thu, 14 May 2015 14:53:35 -0400 From: Eduardo Habkost To: qemu-devel@nongnu.org Date: Thu, 14 May 2015 15:53:02 -0300 Message-Id: <1431629590-25181-6-git-send-email-ehabkost@redhat.com> In-Reply-To: <1431629590-25181-1-git-send-email-ehabkost@redhat.com> References: <1431629590-25181-1-git-send-email-ehabkost@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.26 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: "Michael S. Tsirkin" , jasowang@redhat.com, Alexander Graf , qemu-ppc@nongnu.org, pbonzini@redhat.com, rth@twiddle.net Subject: [Qemu-devel] [PATCH v2 05/13] hw: Define empty HW_COMPAT_2_[23] macros 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 Now we can make everything consistent and define the macros even if they are still empty. Signed-off-by: Eduardo Habkost --- include/hw/compat.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/hw/compat.h b/include/hw/compat.h index c56a698..4a43466 100644 --- a/include/hw/compat.h +++ b/include/hw/compat.h @@ -1,6 +1,12 @@ #ifndef HW_COMPAT_H #define HW_COMPAT_H +#define HW_COMPAT_2_3 \ + /* empty */ + +#define HW_COMPAT_2_2 \ + /* empty */ + #define HW_COMPAT_2_1 \ {\ .driver = "intel-hda",\