diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2016-03-16 15:34:39 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2016-04-06 15:39:16 +0300 |
commit | 952f8eef901b170dbe6b48e80f098be5d835a82c (patch) | |
tree | 9604923afdd634eac60951594664a19955339be9 /include | |
parent | 3047f3f98eabd655ca2db4e42219a2990052f73a (diff) | |
download | linux-952f8eef901b170dbe6b48e80f098be5d835a82c.tar.xz |
[media] media-device: make topology_version u64
The uAPI defines it with 64 bits. Let's change the Kernel
implementation too.
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/media/media-device.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/media-device.h b/include/media/media-device.h index 6d2860657021..07809f698464 100644 --- a/include/media/media-device.h +++ b/include/media/media-device.h @@ -357,7 +357,7 @@ struct media_device { u32 hw_revision; u32 driver_version; - u32 topology_version; + u64 topology_version; u32 id; struct ida entity_internal_idx; |