aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/platform_data
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/platform_data')
-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 b10eac89e2e9..3c1c6444ec4b 100644
--- a/include/linux/platform_data/remoteproc-omap.h
+++ b/include/linux/platform_data/remoteproc-omap.h
@@ -30,6 +30,7 @@ struct platform_device;
30 * @ops: start/stop rproc handlers 30 * @ops: start/stop rproc handlers
31 * @device_enable: omap-specific handler for enabling a device 31 * @device_enable: omap-specific handler for enabling a device
32 * @device_shutdown: omap-specific handler for shutting down a device 32 * @device_shutdown: omap-specific handler for shutting down a device
33 * @set_bootaddr: omap-specific handler for setting the rproc boot address
33 */ 34 */
34struct omap_rproc_pdata { 35struct omap_rproc_pdata {
35 const char *name; 36 const char *name;
@@ -40,6 +41,7 @@ struct omap_rproc_pdata {
40 const struct rproc_ops *ops; 41 const struct rproc_ops *ops;
41 int (*device_enable) (struct platform_device *pdev); 42 int (*device_enable) (struct platform_device *pdev);
42 int (*device_shutdown) (struct platform_device *pdev); 43 int (*device_shutdown) (struct platform_device *pdev);
44 void(*set_bootaddr)(u32);
43}; 45};
44 46
45#if defined(CONFIG_OMAP_REMOTEPROC) || defined(CONFIG_OMAP_REMOTEPROC_MODULE) 47#if defined(CONFIG_OMAP_REMOTEPROC) || defined(CONFIG_OMAP_REMOTEPROC_MODULE)