aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/platform_data/remoteproc-omap.h')
-rw-r--r--include/linux/platform_data/remoteproc-omap.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/platform_data/remoteproc-omap.h b/include/linux/platform_data/remoteproc-omap.h
index 4384eb9ced5..b98acb8c71c 100644
--- a/include/linux/platform_data/remoteproc-omap.h
+++ b/include/linux/platform_data/remoteproc-omap.h
@@ -47,12 +47,14 @@ struct omap_rproc_timer_ops {
47 * @device_enable: omap-specific handler for enabling a device 47 * @device_enable: omap-specific handler for enabling a device
48 * @device_shutdown: omap-specific handler for shutting down a device 48 * @device_shutdown: omap-specific handler for shutting down a device
49 * @set_bootaddr: omap-specific handler for setting the rproc boot address 49 * @set_bootaddr: omap-specific handler for setting the rproc boot address
50 * @pre_shutdown: omap-specific handler for performing pre-shutdown cleanup
50 * @timer_ops: platform data ops for OMAP dmtimer handlers 51 * @timer_ops: platform data ops for OMAP dmtimer handlers
51 */ 52 */
52struct omap_rproc_pdata { 53struct omap_rproc_pdata {
53 int (*device_enable)(struct platform_device *pdev); 54 int (*device_enable)(struct platform_device *pdev);
54 int (*device_shutdown)(struct platform_device *pdev); 55 int (*device_shutdown)(struct platform_device *pdev);
55 void (*set_bootaddr)(u32); 56 void (*set_bootaddr)(u32);
57 void (*pre_shutdown)(void);
56 58
57 struct omap_rproc_timer_ops *timer_ops; 59 struct omap_rproc_timer_ops *timer_ops;
58}; 60};