diff options
author | Vaibhav Hiremath <hvaibhav@ti.com> | 2010-03-27 13:37:07 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-05-18 05:52:43 +0200 |
commit | 085b54a24fd0c7353cd1b2d462879b7a4a4070fa (patch) | |
tree | 78cf85e84295e9713234ce38ffddddd86aad5374 /include/media/davinci/vpfe_capture.h | |
parent | V4L/DVB: V4L: dm644x_ccdc: Debug register read prints removed (diff) | |
download | linux-085b54a24fd0c7353cd1b2d462879b7a4a4070fa.tar.xz linux-085b54a24fd0c7353cd1b2d462879b7a4a4070fa.zip |
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 '')
-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 4314a5f6a087..cc973ed845a7 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 { |