tpci200.c (0048fa6c807fc8fb5c52873562ea3debfa65f085) | tpci200.c (0430891ce162b986c6e02a7729a942ecd2a32ca4) |
---|---|
1/* 2 * QEMU TEWS TPCI200 IndustryPack carrier 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 TEWS TPCI200 IndustryPack carrier 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#include "hw/pci/pci.h" 13#include "qemu/bitops.h" | 12#include "hw/ipack/ipack.h" 13#include "hw/pci/pci.h" 14#include "qemu/bitops.h" |
14#include <stdio.h> | |
15 16/* #define DEBUG_TPCI */ 17 18#ifdef DEBUG_TPCI 19#define DPRINTF(fmt, ...) \ 20 do { fprintf(stderr, "TPCI200: " fmt, ## __VA_ARGS__); } while (0) 21#else 22#define DPRINTF(fmt, ...) do { } while (0) --- 634 unchanged lines hidden --- | 15 16/* #define DEBUG_TPCI */ 17 18#ifdef DEBUG_TPCI 19#define DPRINTF(fmt, ...) \ 20 do { fprintf(stderr, "TPCI200: " fmt, ## __VA_ARGS__); } while (0) 21#else 22#define DPRINTF(fmt, ...) do { } while (0) --- 634 unchanged lines hidden --- |