mirror of https://github.com/xemu-project/xemu.git
libqtest: Fix documentation copy&paste errors
The [qtest_]in[bwl]() functions/macros don't have a value argument. Signed-off-by: Andreas Färber <afaerber@suse.de> Message-id: 1360604139-16797-1-git-send-email-afaerber@suse.de Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
f880defbb0
commit
84eac31707
|
@ -109,7 +109,6 @@ void qtest_outl(QTestState *s, uint16_t addr, uint32_t value);
|
||||||
* qtest_inb:
|
* qtest_inb:
|
||||||
* @s: QTestState instance to operate on.
|
* @s: QTestState instance to operate on.
|
||||||
* @addr: I/O port to read from.
|
* @addr: I/O port to read from.
|
||||||
* @value: Value being written.
|
|
||||||
*
|
*
|
||||||
* Returns an 8-bit value from an I/O port.
|
* Returns an 8-bit value from an I/O port.
|
||||||
*/
|
*/
|
||||||
|
@ -119,7 +118,6 @@ uint8_t qtest_inb(QTestState *s, uint16_t addr);
|
||||||
* qtest_inw:
|
* qtest_inw:
|
||||||
* @s: QTestState instance to operate on.
|
* @s: QTestState instance to operate on.
|
||||||
* @addr: I/O port to read from.
|
* @addr: I/O port to read from.
|
||||||
* @value: Value being written.
|
|
||||||
*
|
*
|
||||||
* Returns a 16-bit value from an I/O port.
|
* Returns a 16-bit value from an I/O port.
|
||||||
*/
|
*/
|
||||||
|
@ -129,7 +127,6 @@ uint16_t qtest_inw(QTestState *s, uint16_t addr);
|
||||||
* qtest_inl:
|
* qtest_inl:
|
||||||
* @s: QTestState instance to operate on.
|
* @s: QTestState instance to operate on.
|
||||||
* @addr: I/O port to read from.
|
* @addr: I/O port to read from.
|
||||||
* @value: Value being written.
|
|
||||||
*
|
*
|
||||||
* Returns a 32-bit value from an I/O port.
|
* Returns a 32-bit value from an I/O port.
|
||||||
*/
|
*/
|
||||||
|
@ -279,7 +276,6 @@ void qtest_add_func(const char *str, void (*fn));
|
||||||
/**
|
/**
|
||||||
* inb:
|
* inb:
|
||||||
* @addr: I/O port to read from.
|
* @addr: I/O port to read from.
|
||||||
* @value: Value being written.
|
|
||||||
*
|
*
|
||||||
* Returns an 8-bit value from an I/O port.
|
* Returns an 8-bit value from an I/O port.
|
||||||
*/
|
*/
|
||||||
|
@ -288,7 +284,6 @@ void qtest_add_func(const char *str, void (*fn));
|
||||||
/**
|
/**
|
||||||
* inw:
|
* inw:
|
||||||
* @addr: I/O port to read from.
|
* @addr: I/O port to read from.
|
||||||
* @value: Value being written.
|
|
||||||
*
|
*
|
||||||
* Returns a 16-bit value from an I/O port.
|
* Returns a 16-bit value from an I/O port.
|
||||||
*/
|
*/
|
||||||
|
@ -297,7 +292,6 @@ void qtest_add_func(const char *str, void (*fn));
|
||||||
/**
|
/**
|
||||||
* inl:
|
* inl:
|
||||||
* @addr: I/O port to read from.
|
* @addr: I/O port to read from.
|
||||||
* @value: Value being written.
|
|
||||||
*
|
*
|
||||||
* Returns a 32-bit value from an I/O port.
|
* Returns a 32-bit value from an I/O port.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue