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/mailbox-omap.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/platform_data/mailbox-omap.h b/include/linux/platform_data/mailbox-omap.h
index 676cd642bb3f..4631dbb4255e 100644
--- a/include/linux/platform_data/mailbox-omap.h
+++ b/include/linux/platform_data/mailbox-omap.h
@@ -41,11 +41,16 @@ struct omap_mbox_dev_info {
41 * struct omap_mbox_pdata - OMAP mailbox platform data 41 * struct omap_mbox_pdata - OMAP mailbox platform data
42 * @intr_type: type of interrupt configuration registers used 42 * @intr_type: type of interrupt configuration registers used
43 while programming mailbox queue interrupts 43 while programming mailbox queue interrupts
44 * @num_users: number of users (processor devices) that the mailbox
45 * h/w block can interrupt
46 * @num_fifos: number of h/w fifos within the mailbox h/w block
44 * @info_cnt: number of mailbox devices for the platform 47 * @info_cnt: number of mailbox devices for the platform
45 * @info: array of mailbox device attributes 48 * @info: array of mailbox device attributes
46 */ 49 */
47struct omap_mbox_pdata { 50struct omap_mbox_pdata {
48 u32 intr_type; 51 u32 intr_type;
52 u32 num_users;
53 u32 num_fifos;
49 u32 info_cnt; 54 u32 info_cnt;
50 struct omap_mbox_dev_info *info; 55 struct omap_mbox_dev_info *info;
51}; 56};