ahci.c (a8170e5e97ad17ca169c64ba87ae2f53850dab4c) | ahci.c (a2cb15b0ddfa05f81a42d7b65dd0c7c50e420c33) |
---|---|
1/* 2 * QEMU AHCI Emulation 3 * 4 * Copyright (c) 2010 qiaochong@loongson.cn 5 * Copyright (c) 2010 Roland Elek <elek.roland@gmail.com> 6 * Copyright (c) 2010 Sebastian Herbszt <herbszt@gmx.de> 7 * Copyright (c) 2010 Alexander Graf <agraf@suse.de> 8 * --- 8 unchanged lines hidden (view full) --- 17 * Lesser General Public License for more details. 18 * 19 * You should have received a copy of the GNU Lesser General Public 20 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 21 * 22 */ 23 24#include <hw/hw.h> | 1/* 2 * QEMU AHCI Emulation 3 * 4 * Copyright (c) 2010 qiaochong@loongson.cn 5 * Copyright (c) 2010 Roland Elek <elek.roland@gmail.com> 6 * Copyright (c) 2010 Sebastian Herbszt <herbszt@gmx.de> 7 * Copyright (c) 2010 Alexander Graf <agraf@suse.de> 8 * --- 8 unchanged lines hidden (view full) --- 17 * Lesser General Public License for more details. 18 * 19 * You should have received a copy of the GNU Lesser General Public 20 * License along with this library; if not, see <http://www.gnu.org/licenses/>. 21 * 22 */ 23 24#include <hw/hw.h> |
25#include <hw/msi.h> | 25#include <hw/pci/msi.h> |
26#include <hw/pc.h> | 26#include <hw/pc.h> |
27#include <hw/pci.h> | 27#include <hw/pci/pci.h> |
28#include <hw/sysbus.h> 29 30#include "monitor.h" 31#include "dma.h" 32#include "cpu-common.h" 33#include "internal.h" 34#include <hw/ide/pci.h> 35#include <hw/ide/ahci.h> --- 1227 unchanged lines hidden --- | 28#include <hw/sysbus.h> 29 30#include "monitor.h" 31#include "dma.h" 32#include "cpu-common.h" 33#include "internal.h" 34#include <hw/ide/pci.h> 35#include <hw/ide/ahci.h> --- 1227 unchanged lines hidden --- |