diff options
author | Vaibhav Hiremath <hvaibhav@ti.com> | 2010-03-27 09:37:07 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-05-18 00:52:43 -0300 |
commit | 085b54a24fd0c7353cd1b2d462879b7a4a4070fa (patch) | |
tree | 78cf85e84295e9713234ce38ffddddd86aad5374 /include/media/davinci | |
parent | fcc63274e69f95aee9dbb7c1dc3af3d2961813cc (diff) | |
download | op-kernel-dev-085b54a24fd0c7353cd1b2d462879b7a4a4070fa.zip op-kernel-dev-085b54a24fd0c7353cd1b2d462879b7a4a4070fa.tar.gz |
V4L/DVB: V4L: vpfe_capture: Add call back function for interrupt clear for vpfe_cfg
For the devices like AM3517, it is expected that driver clears the
interrupt in ISR. Since this is device spcific, callback function
added to the platform_data.
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
Signed-off-by: Muralidharan Karicheri <mkaricheri@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media/davinci')
-rw-r--r-- | include/media/davinci/vpfe_capture.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/media/davinci/vpfe_capture.h b/include/media/davinci/vpfe_capture.h index 4314a5f..cc973ed 100644 --- a/include/media/davinci/vpfe_capture.h +++ b/include/media/davinci/vpfe_capture.h @@ -94,6 +94,8 @@ struct vpfe_config { /* vpfe clock */ struct clk *vpssclk; struct clk *slaveclk; + /* Function for Clearing the interrupt */ + void (*clr_intr)(int vdint); }; struct vpfe_device { |