]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
[media] s5p-jpeg: Initialize vfd_decoder->vfl_dir field
authorJacek Anaszewski <j.anaszewski@samsung.com>
Wed, 11 Sep 2013 09:17:45 +0000 (06:17 -0300)
committerMauro Carvalho Chehab <m.chehab@samsung.com>
Tue, 24 Sep 2013 16:41:53 +0000 (13:41 -0300)
commit7f7d8fe258df18d122aebaffb29eeaa40d6d7f51
tree7333d66a3d76717701eb37c1b42482cc8d80a73b
parent774d23010f6a7d7d299552f0b1edfbe1ec82c5e7
[media] s5p-jpeg: Initialize vfd_decoder->vfl_dir field

This patch fixes regression introduced in commit 5c77879ff9ab9e7
"[media] v4l2-dev: add new VFL_DIR_ defines" caused by not initializing
the vfl_dir field of the vfd_decoder instance of struct video_device,
after the field was introduced. It precluded calling the driver's ioctls
which require vfl_dir not to be equal to VFL_DIR_RX which is defined as
0 and uninitialized vfl_dir field is interpreted as such. In effect the
test in the v4l_s_fmt function failed for the ioctls that expect is_tx
to be false, which prevented the ioctl callbacks registered by the driver
from being called.

Signed-off-by: Jacek Anaszewski <j.anaszewski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
drivers/media/platform/s5p-jpeg/jpeg-core.c