diff options
author | Russell King <rmk+cubox@arm.linux.org.uk> | 2013-08-27 17:45:38 +0100 |
---|---|---|
committer | Russell King <rmk@arm.linux.org.uk> | 2013-10-29 19:21:09 +0000 |
commit | 7164c4bd03d8dfcfaf92ec5fe50612739ab5a435 (patch) | |
tree | 1f5090f99144d8bbcfa3930ea112ff8491c441a8 | |
parent | 86eda7716d28becc9ccdf552f4c840b615d68755 (diff) |
Keep the 'status' field in structures passed to galcore
The galcore API function expects the second word to contain a status
value - passing other stuff here leads to errors returned from
gcoOS_DeviceControl().
Signed-off-by: Russell King <rmk@arm.linux.org.uk>
-rw-r--r-- | src/gal_extension.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gal_extension.h b/src/gal_extension.h index 5c26ade..f02b418 100644 --- a/src/gal_extension.h +++ b/src/gal_extension.h @@ -10,6 +10,7 @@ /* Map a DMABUF fd into galcore */ struct map_dma_buf { unsigned zero; + unsigned status; int fd; gctPOINTER Info; gctUINT32 Address; |