Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

apps: remove remaining master terminology #589

Merged
merged 2 commits into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/machine/zynq7/platform_info_remoteproc_master.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ extern struct hil_platform_ops zynq_a9_proc_ops;
#define SHM_SIZE 0x00200000
#define VRING0_IPI_VECT 6
#define VRING1_IPI_VECT 3
#define MASTER_CPU_ID 0
#define HOST_CPU_ID 0
#define REMOTE_CPU_ID 1

/**
* This array provdes defnition of CPU nodes for host and remote
* This array provides definition of CPU nodes for host and remote
* context. It contains two nodes because the same file is intended
* to use with both host and remote configurations. On zynq platform
* only one node definition is required for host/remote as there
Expand All @@ -51,7 +51,7 @@ extern struct hil_platform_ops zynq_a9_proc_ops;
* -Channel info.
*
* Although the channel info is not platform specific information
* but it is conveneient to keep it in HIL so that user can easily
* but it is convenient to keep it in HIL so that user can easily
* provide it without modifying the generic part.
*
* It is good idea to define hil_proc structure with platform
Expand Down
2 changes: 1 addition & 1 deletion apps/tests/msg/rpmsg-nocopy-echo.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ int app(struct rpmsg_device *rdev, void *priv)
break;
}
while (rpmsg_list) {
/* Send data back to master */
/* Send data back to host */
ret = rpmsg_send(rpmsg_list->ept, rpmsg_list->data,
rpmsg_list->len);
if (ret < 0) {
Expand Down
Loading