Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt: mailbox: Remove 'mbox-names property is discouraged' message from binding

A new API call has been introduced which allows channels to be
requested by name. This new call uses the 'mbox-names' property,
so users need no further discouragement from supplying it.

Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>

authored by

Lee Jones and committed by
Jassi Brar
07a7dba1 dfabde20

+2 -8
+2 -8
Documentation/devicetree/bindings/mailbox/mailbox.txt
··· 22 22 - mboxes: List of phandle and mailbox channel specifiers. 23 23 24 24 Optional property: 25 - - mbox-names: List of identifier strings for each mailbox channel 26 - required by the client. The use of this property 27 - is discouraged in favor of using index in list of 28 - 'mboxes' while requesting a mailbox. Instead the 29 - platforms may define channel indices, in DT headers, 30 - to something legible. 25 + - mbox-names: List of identifier strings for each mailbox channel. 31 26 32 27 Example: 33 28 pwr_cntrl: power { 34 29 ... 35 30 mbox-names = "pwr-ctrl", "rpc"; 36 - mboxes = <&mailbox 0 37 - &mailbox 1>; 31 + mboxes = <&mailbox 0 &mailbox 1>; 38 32 };