Branch: refs/heads/main
Home: https://github.com/OpenAMP/open-amp
Commit: 04effe4fc735a4f470723e9c4e1609a5039696e6
https://github.com/OpenAMP/open-amp/commit/04effe4fc735a4f470723e9c4e1609a5…
Author: Zongcheng Han <hanzongcheng(a)huawei.com>
Date: 2024-04-02 (Tue, 02 Apr 2024)
Changed paths:
M lib/remoteproc/remoteproc.c
Log Message:
-----------
remoteproc: drop unnecessary error return value
The rsc_table is checked against NULL in remoteproc_load().
But remoteproc_get_rsc_table() returns ERR_PTR after an error.
The error return value is unnecessary, just return NULL for failure.
Signed-off-by: Zongcheng Han <hanzongcheng(a)huawei.com>
To unsubscribe from these emails, change your notification settings at https://github.com/OpenAMP/open-amp/settings/notifications
Branch: refs/heads/main
Home: https://github.com/OpenAMP/open-amp
Commit: 962b6ef07116e5265216319b107f7f581fbeaa8c
https://github.com/OpenAMP/open-amp/commit/962b6ef07116e5265216319b107f7f58…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-04-02 (Tue, 02 Apr 2024)
Changed paths:
M lib/include/openamp/rpmsg_virtio.h
Log Message:
-----------
rpmsg_virtio: Deprecate rpmsg_virtio_{create,delete}_virtqueues helpers
These are only used internally by rpmsg_virtio. They also already exist
as part of the virtio API. Do not create an extra wrapper API out of
these functions. Deprecate these functions.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Commit: 435a74175af32949e46f9cf4d3aa7044ada9e0a9
https://github.com/OpenAMP/open-amp/commit/435a74175af32949e46f9cf4d3aa7044…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-04-02 (Tue, 02 Apr 2024)
Changed paths:
M lib/rpmsg/rpmsg_virtio.c
Log Message:
-----------
rpmsg_virtio: Do not use rpmsg_virtio_{create,delete}_virtqueues helpers
These are only used internally by rpmsg_virtio. They also already exist
as part of the virtio API. Do not create an extra wrapper API out of
these functions. Use the virtio functions directly in rpmsg_virtio.c.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Commit: d233fdc1104a84ba31c00c31e8d87af03c96f0c2
https://github.com/OpenAMP/open-amp/commit/d233fdc1104a84ba31c00c31e8d87af0…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-04-02 (Tue, 02 Apr 2024)
Changed paths:
M lib/include/openamp/rpmsg_virtio.h
Log Message:
-----------
rpmsg_virtio: Deprecate functions that duplicate virtio functions
Do not expose new functions that reach into structs not belonging to
rpmsg_virtio, that breaks layering. Functions to access these members of
struct virtio are already provided by virtio, use those instead. Deprecate
the unneeded and layer breaking rpmsg_virtio functions for the same.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Commit: 2427641697e5b5536da1b52e3adf849337df5aa4
https://github.com/OpenAMP/open-amp/commit/2427641697e5b5536da1b52e3adf8493…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-04-02 (Tue, 02 Apr 2024)
Changed paths:
M lib/rpmsg/rpmsg_virtio.c
Log Message:
-----------
rpmsg_virtio: Do not use rpmsg_virtio_{get,set} helpers
These functions are deprecated, use their replacements.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Commit: d13dd90c5627be94dac5957d0096f854dd6c84f9
https://github.com/OpenAMP/open-amp/commit/d13dd90c5627be94dac5957d0096f854…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-04-02 (Tue, 02 Apr 2024)
Changed paths:
M lib/rpmsg/rpmsg_virtio.c
Log Message:
-----------
rpmsg_virtio: Return error code if waiting for remote fails
If we cannot finish waiting for the remote to be ready to start RPMsg
communication then return and propagate an error.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Compare: https://github.com/OpenAMP/open-amp/compare/d50bb033a9aa...d13dd90c5627
To unsubscribe from these emails, change your notification settings at https://github.com/OpenAMP/open-amp/settings/notifications
Branch: refs/heads/main
Home: https://github.com/OpenAMP/open-amp
Commit: d6b3604022b1305c488380562b49e2e4664900c5
https://github.com/OpenAMP/open-amp/commit/d6b3604022b1305c488380562b49e2e4…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-04-02 (Tue, 02 Apr 2024)
Changed paths:
M lib/include/openamp/rsc_table_parser.h
M lib/remoteproc/rsc_table_parser.c
Log Message:
-----------
rsc_table_parser: Do not expose internal-only functions
These functions are only used within rsc_table_parser. These should be
only available there and made static. This prevents them from becoming
part of the API.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Commit: a0b2b7c10f1d99fe6431de6455e4ae1adc85293b
https://github.com/OpenAMP/open-amp/commit/a0b2b7c10f1d99fe6431de6455e4ae1a…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-04-02 (Tue, 02 Apr 2024)
Changed paths:
R lib/include/openamp/rsc_table_parser.h
M lib/remoteproc/remoteproc.c
M lib/remoteproc/rsc_table_parser.c
A lib/remoteproc/rsc_table_parser.h
Log Message:
-----------
rsc_table_parser: Move header to make internal functions internal only
The files in include/openamp are deployed on install and can be used
by applications using the OpenAMP API. The functions in rsc_table_parser
are all internal use only. Move this header out of that location.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Commit: d50bb033a9aa0d469b27f0314dbd0c02aff10a81
https://github.com/OpenAMP/open-amp/commit/d50bb033a9aa0d469b27f0314dbd0c02…
Author: Andrew Davis <afd(a)ti.com>
Date: 2024-04-02 (Tue, 02 Apr 2024)
Changed paths:
M lib/remoteproc/rsc_table_parser.c
Log Message:
-----------
rsc_table_parser: Do not forward declare when not needed
Forward declaration of functions here is not needed, simply move
the function definition to top of the file. No functional change.
Signed-off-by: Andrew Davis <afd(a)ti.com>
Compare: https://github.com/OpenAMP/open-amp/compare/15b4a8b6210e...d50bb033a9aa
To unsubscribe from these emails, change your notification settings at https://github.com/OpenAMP/open-amp/settings/notifications