[PATCH 3/3] mailbox: Add support for ST's Mailbox IP
Arnd Bergmann
arnd at arndb.de
Tue Mar 3 03:34:37 PST 2015
On Tuesday 03 March 2015 10:41:23 Lee Jones wrote:
> +
> +/*
> + * struct sti_mbox_msg - sti mailbox message description
> + * @dsize: data payload size
> + * @pdata: message data payload
> + */
> +struct sti_mbox_msg {
> + u32 dsize;
> + u8 *pdata;
> +};
As mentioned in another thread, we may just want to add a 'size'
argument to the message send function, and a default helper for
messages with size of 32 bits.
I don't think it's good to fragment this further by adding
an indirect message interface in a particular driver.
Arnd
More information about the linux-arm-kernel
mailing list