ssi.c (1a4f446f81c63151efc30f3ce60a749e8a4cf680) | ssi.c (0430891ce162b986c6e02a7729a942ecd2a32ca4) |
---|---|
1/* 2 * QEMU Synchronous Serial Interface support 3 * 4 * Copyright (c) 2009 CodeSourcery. 5 * Copyright (c) 2012 Peter A.G. Crosthwaite (peter.crosthwaite@petalogix.com) 6 * Copyright (c) 2012 PetaLogix Pty Ltd. 7 * Written by Paul Brook 8 * 9 * This code is licensed under the GNU GPL v2. 10 * 11 * Contributions after 2012-01-13 are licensed under the terms of the 12 * GNU GPL, version 2 or (at your option) any later version. 13 */ 14 | 1/* 2 * QEMU Synchronous Serial Interface support 3 * 4 * Copyright (c) 2009 CodeSourcery. 5 * Copyright (c) 2012 Peter A.G. Crosthwaite (peter.crosthwaite@petalogix.com) 6 * Copyright (c) 2012 PetaLogix Pty Ltd. 7 * Written by Paul Brook 8 * 9 * This code is licensed under the GNU GPL v2. 10 * 11 * Contributions after 2012-01-13 are licensed under the terms of the 12 * GNU GPL, version 2 or (at your option) any later version. 13 */ 14 |
15#include "qemu/osdep.h" |
|
15#include "hw/ssi/ssi.h" 16 17struct SSIBus { 18 BusState parent_obj; 19}; 20 21#define TYPE_SSI_BUS "SSI" 22#define SSI_BUS(obj) OBJECT_CHECK(SSIBus, (obj), TYPE_SSI_BUS) --- 152 unchanged lines hidden --- | 16#include "hw/ssi/ssi.h" 17 18struct SSIBus { 19 BusState parent_obj; 20}; 21 22#define TYPE_SSI_BUS "SSI" 23#define SSI_BUS(obj) OBJECT_CHECK(SSIBus, (obj), TYPE_SSI_BUS) --- 152 unchanged lines hidden --- |