ipack.c (b3959efdbb2dc3d5959e3b0a8e188126930beca8) | ipack.c (0430891ce162b986c6e02a7729a942ecd2a32ca4) |
---|---|
1/* 2 * QEMU IndustryPack emulation 3 * 4 * Copyright (C) 2012 Igalia, S.L. 5 * Author: Alberto Garcia <agarcia@igalia.com> 6 * 7 * This code is licensed under the GNU GPL v2 or (at your option) any 8 * later version. 9 */ 10 | 1/* 2 * QEMU IndustryPack emulation 3 * 4 * Copyright (C) 2012 Igalia, S.L. 5 * Author: Alberto Garcia <agarcia@igalia.com> 6 * 7 * This code is licensed under the GNU GPL v2 or (at your option) any 8 * later version. 9 */ 10 |
11#include "qemu/osdep.h" |
|
11#include "hw/ipack/ipack.h" 12 13IPackDevice *ipack_device_find(IPackBus *bus, int32_t slot) 14{ 15 BusChild *kid; 16 17 QTAILQ_FOREACH(kid, &BUS(bus)->children, sibling) { 18 DeviceState *qdev = kid->child; --- 101 unchanged lines hidden --- | 12#include "hw/ipack/ipack.h" 13 14IPackDevice *ipack_device_find(IPackBus *bus, int32_t slot) 15{ 16 BusChild *kid; 17 18 QTAILQ_FOREACH(kid, &BUS(bus)->children, sibling) { 19 DeviceState *qdev = kid->child; --- 101 unchanged lines hidden --- |