From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33824) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YzOk5-0005uJ-6G for qemu-devel@nongnu.org; Mon, 01 Jun 2015 08:22:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YzOk1-0007Ny-6B for qemu-devel@nongnu.org; Mon, 01 Jun 2015 08:22:57 -0400 Received: from mx1.redhat.com ([209.132.183.28]:53407) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YzOk1-0007No-0f for qemu-devel@nongnu.org; Mon, 01 Jun 2015 08:22:53 -0400 Date: Mon, 1 Jun 2015 14:22:50 +0200 From: "Michael S. Tsirkin" Message-ID: <1433161230-29421-9-git-send-email-mst@redhat.com> References: <1433161230-29421-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1433161230-29421-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL v2 08/60] hw: Define empty HW_COMPAT_2_[23] macros List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Eduardo Habkost , Alexander Graf From: Eduardo Habkost Now we can make everything consistent and define the macros even if they are still empty. Signed-off-by: Eduardo Habkost Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- 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",\ -- MST