diff options
author | Sachin Kamat <[email protected]> | 2013-04-30 02:16:19 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <[email protected]> | 2013-05-21 08:36:28 -0300 |
commit | 8410725333088643f49371396e727cc1e41ccfb5 (patch) | |
tree | 6ca13dcab5e459ac79294ea8f50ac8f1caa5d459 | |
parent | 2031941502339d548cd51bf34e6ebb8bc3bb2d89 (diff) |
[media] s3c-camif: Fix incorrect variable type
'rotation' was an 8 bit variable and hence could not have values
greater than 255. Since we need higher values, change it to 16
bit type.
Signed-off-by: Sachin Kamat <[email protected]>
Signed-off-by: Sylwester Nawrocki <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-rw-r--r-- | drivers/media/platform/s3c-camif/camif-core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/s3c-camif/camif-core.h b/drivers/media/platform/s3c-camif/camif-core.h index 261134baa655..35d2fcdc0036 100644 --- a/drivers/media/platform/s3c-camif/camif-core.h +++ b/drivers/media/platform/s3c-camif/camif-core.h @@ -229,7 +229,7 @@ struct camif_vp { unsigned int state; u16 fmt_flags; u8 id; - u8 rotation; + u16 rotation; u8 hflip; u8 vflip; unsigned int offset; |