Add a comment in dbus_read

This just comments the current behavior
This commit is contained in:
Megan Wachs
2018-01-04 13:27:35 -08:00
committed by GitHub
parent 82529e71e0
commit 33aad3524b
+6 -1
View File
@@ -454,7 +454,12 @@ static uint64_t dbus_read(struct target *target, uint16_t address)
uint64_t value;
dbus_status_t status;
uint16_t address_in;
/* If the previous read/write was to the same address, we will get the read data
* from the previous access.
* While somewhat nonintuitive, this is an efficient way to get the data.
*/
unsigned i = 0;
do {
status = dbus_scan(target, &address_in, &value, DBUS_OP_READ, address, 0);