imx_i2c.c (8ec4fe0a4bed4fa27e6f28a746bcf77b27cd05a3) | imx_i2c.c (03dd024ff57733a55cd2e455f361d053c81b1b29) |
---|---|
1/* 2 * i.MX I2C Bus Serial Interface Emulation 3 * 4 * Copyright (C) 2013 Jean-Christophe Dubois. <jcd@tribudubois.net> 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License as published by the 8 * Free Software Foundation; either version 2 of the License, or --- 7 unchanged lines hidden (view full) --- 16 * You should have received a copy of the GNU General Public License along 17 * with this program; if not, see <http://www.gnu.org/licenses/>. 18 * 19 */ 20 21#include "qemu/osdep.h" 22#include "hw/i2c/imx_i2c.h" 23#include "hw/i2c/i2c.h" | 1/* 2 * i.MX I2C Bus Serial Interface Emulation 3 * 4 * Copyright (C) 2013 Jean-Christophe Dubois. <jcd@tribudubois.net> 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License as published by the 8 * Free Software Foundation; either version 2 of the License, or --- 7 unchanged lines hidden (view full) --- 16 * You should have received a copy of the GNU General Public License along 17 * with this program; if not, see <http://www.gnu.org/licenses/>. 18 * 19 */ 20 21#include "qemu/osdep.h" 22#include "hw/i2c/imx_i2c.h" 23#include "hw/i2c/i2c.h" |
24#include "qemu/log.h" |
|
24 25#ifndef DEBUG_IMX_I2C 26#define DEBUG_IMX_I2C 0 27#endif 28 29#define DPRINTF(fmt, args...) \ 30 do { \ 31 if (DEBUG_IMX_I2C) { \ --- 306 unchanged lines hidden --- | 25 26#ifndef DEBUG_IMX_I2C 27#define DEBUG_IMX_I2C 0 28#endif 29 30#define DPRINTF(fmt, args...) \ 31 do { \ 32 if (DEBUG_IMX_I2C) { \ --- 306 unchanged lines hidden --- |