mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
libqos: Relocate I2C files
Commit c4efe1cada
(qtest: add libqos
including PCI support) created a libqos/ subdirectory but left the
existing I2C libqos files libi2c*.[hc] in tests/. Clean this up.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Message-id: 1367502986-15104-1-git-send-email-afaerber@suse.de
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
743bddb4b3
commit
cc9936a32f
5 changed files with 6 additions and 5 deletions
22
tests/libqos/i2c.c
Normal file
22
tests/libqos/i2c.c
Normal file
|
@ -0,0 +1,22 @@
|
|||
/*
|
||||
* QTest I2C driver
|
||||
*
|
||||
* Copyright (c) 2012 Andreas Färber
|
||||
*
|
||||
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
||||
* See the COPYING file in the top-level directory.
|
||||
*/
|
||||
#include "libqos/i2c.h"
|
||||
#include "libqtest.h"
|
||||
|
||||
void i2c_send(I2CAdapter *i2c, uint8_t addr,
|
||||
const uint8_t *buf, uint16_t len)
|
||||
{
|
||||
i2c->send(i2c, addr, buf, len);
|
||||
}
|
||||
|
||||
void i2c_recv(I2CAdapter *i2c, uint8_t addr,
|
||||
uint8_t *buf, uint16_t len)
|
||||
{
|
||||
i2c->recv(i2c, addr, buf, len);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue