summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@altlinux.org>2020-09-06 08:00:00 +0000
committerDmitry V. Levin <ldv@altlinux.org>2020-09-06 08:00:00 +0000
commite877fe48187eea9c24ec539fe7875bdc0de74b86 (patch)
tree2bd53f87fa15fb2b5d6da29b868d66d88e4cab2e
parent26a558b671b10fe51ab46e40e55c603c0e809b6b (diff)
downloadstrace-e877fe48187eea9c24ec539fe7875bdc0de74b86.tar.gz
types/v4l2.h: update definition of struct_v4l2_create_buffers
* types/v4l2.h (struct_v4l2_create_buffers): Add "flags" field and update "reserved" field to sync with changes introduced by Linux kernel commit v5.9-rc1~94^2~295.
-rw-r--r--types/v4l2.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/types/v4l2.h b/types/v4l2.h
index 24a4b90f9..0bfc9d2c3 100644
--- a/types/v4l2.h
+++ b/types/v4l2.h
@@ -249,7 +249,9 @@ typedef struct {
struct_v4l2_format format;
/** V4L2_BUF_CAP_*, added by Linux commit v4.20-rc1~51^2~14 */
uint32_t capabilities;
- uint32_t reserved[7];
+ /** V4L2_FLAG_MEMORY_NON_CONSISTENT, added by Linux commit v5.9-rc1~94^2~295 */
+ uint32_t flags;
+ uint32_t reserved[6];
} struct_v4l2_create_buffers;
#endif /* STRACE_TYPES_V4L2_H */