From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49922) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UhzBJ-0006IP-0B for qemu-devel@nongnu.org; Thu, 30 May 2013 05:30:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UhzB4-0005O2-Lh for qemu-devel@nongnu.org; Thu, 30 May 2013 05:30:00 -0400 Received: from mx1.redhat.com ([209.132.183.28]:17667) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UhzB4-0005Nf-Df for qemu-devel@nongnu.org; Thu, 30 May 2013 05:29:46 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r4U9TjnS005686 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 30 May 2013 05:29:45 -0400 Date: Thu, 30 May 2013 12:30:12 +0300 From: "Michael S. Tsirkin" Message-ID: <1369906048-22212-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH 0/2] fixup some fallback from tree reorg List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini Here are some patches fixing up minor issues in the tree reorganization. Michael S. Tsirkin (2): dec.c - move to pci-bridge firmware_abi: move to include/hw/nvram/ hw/pci-bridge/Makefile.objs | 2 + hw/pci-bridge/dec.c | 156 +++++++++++++++++++++++++++++++ hw/pci-bridge/dec.h | 10 ++ hw/pci-host/Makefile.objs | 1 - hw/pci-host/dec.c | 156 ------------------------------- hw/pci-host/dec.h | 10 -- hw/sparc/sun4m.c | 2 +- hw/sparc64/sun4u.c | 2 +- include/hw/nvram/openbios_firmware_abi.h | 73 +++++++++++++++ include/hw/sparc/firmware_abi.h | 73 --------------- 10 files changed, 243 insertions(+), 242 deletions(-) create mode 100644 hw/pci-bridge/dec.c create mode 100644 hw/pci-bridge/dec.h delete mode 100644 hw/pci-host/dec.c delete mode 100644 hw/pci-host/dec.h create mode 100644 include/hw/nvram/openbios_firmware_abi.h delete mode 100644 include/hw/sparc/firmware_abi.h -- MST