Commit 5c68d91e authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau/i2c/g94-: return REPLY_M value on reads

This value represents the actual number of bytes recieved on the AUX
channel as the result of a read transaction.
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 1af5c410
...@@ -152,6 +152,7 @@ g94_i2c_aux_xfer(struct nvkm_i2c_aux *obj, bool retry, ...@@ -152,6 +152,7 @@ g94_i2c_aux_xfer(struct nvkm_i2c_aux *obj, bool retry,
AUX_TRACE(&aux->base, "rd %08x", xbuf[i / 4]); AUX_TRACE(&aux->base, "rd %08x", xbuf[i / 4]);
} }
memcpy(data, xbuf, *size); memcpy(data, xbuf, *size);
*size = stat & 0x0000001f;
} }
out: out:
......
...@@ -152,6 +152,7 @@ gm200_i2c_aux_xfer(struct nvkm_i2c_aux *obj, bool retry, ...@@ -152,6 +152,7 @@ gm200_i2c_aux_xfer(struct nvkm_i2c_aux *obj, bool retry,
AUX_TRACE(&aux->base, "rd %08x", xbuf[i / 4]); AUX_TRACE(&aux->base, "rd %08x", xbuf[i / 4]);
} }
memcpy(data, xbuf, *size); memcpy(data, xbuf, *size);
*size = stat & 0x0000001f;
} }
out: out:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment