Commit ec477e7d authored by Sandrine Bailleux's avatar Sandrine Bailleux
Browse files

doc: Fix syntax erros in I/O storage layer plantuml diagrams

Some of the plantuml diagrams in the I/O storage abstraction layer
documentation are absent from the rendered version of the porting
guide. The build log (see [1] for example) reports a syntax error in
these files. This is due to the usage of the 'order' keyword on the
participants list, which does not seem to be supported by the version
of plantuml installed on the ReadTheDocs server.

Fix these syntax errors by removing the 'order' keyword altogether. We
simply rely on the participants being declared in the desired order,
which will be the order of display, according to the plantuml
documentation.

[1] https://readthedocs.org/api/v2/build/9870345.txt



Change-Id: Ife35c74cb2f1dac28bda07df395244639a8d6a2b
Signed-off-by: default avatarSandrine Bailleux <sandrine.bailleux@arm.com>
parent a74e3a16
@startuml
participant arm_io_storage order 1
participant io_storage order 2
participant arm_io_storage
participant io_storage
-> arm_io_storage : plat_get_image_source(image_id, &dev_handle, &image_spec)
......
@startuml
participant arm_io_storage order 1
participant io_storage order 2
participant io_fip order 3
participant io_memmap order 4
participant arm_io_storage
participant io_storage
participant io_fip
participant io_memmap
-> arm_io_storage : arm_io_setup()
......
@startuml
participant bl_common order 1
participant arm_io_storage order 2
participant io_storage order 3
participant bl_common
participant arm_io_storage
participant io_storage
== Platform Setup ==
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment