diff options
| author | Simon Glass <[email protected]> | 2024-10-14 16:32:02 -0600 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2024-10-18 14:10:22 -0600 |
| commit | 96cbafb1d2902cfbf8a7776f258e97b4394d00fe (patch) | |
| tree | 86b8382032e3bde7a96b27ec1d6f4052e89c0541 /boot | |
| parent | fde707501f614ad57dbbbc6269f1b99b86875c39 (diff) | |
expo: Drop scene_title_set()
This function is really just an assignment, so serves no useful
purpose. Drop it.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'boot')
| -rw-r--r-- | boot/expo_build.c | 4 | ||||
| -rw-r--r-- | boot/scene.c | 7 |
2 files changed, 2 insertions, 9 deletions
diff --git a/boot/expo_build.c b/boot/expo_build.c index 930cc40ec07..d97347e1725 100644 --- a/boot/expo_build.c +++ b/boot/expo_build.c @@ -404,7 +404,7 @@ static int scene_build(struct build_info *info, ofnode scn_node, if (ret < 0) return log_msg_ret("tit", ret); title_id = ret; - scene_title_set(scn, title_id); + scn->title_id = title_id; ret = add_txt_str(info, scn_node, scn, "prompt", 0); if (ret < 0) @@ -420,7 +420,7 @@ static int scene_build(struct build_info *info, ofnode scn_node, return 0; } -int build_it(struct build_info *info, ofnode root, struct expo **expp) +static int build_it(struct build_info *info, ofnode root, struct expo **expp) { ofnode scenes, node; struct expo *exp; diff --git a/boot/scene.c b/boot/scene.c index a4836000b28..3290a40222a 100644 --- a/boot/scene.c +++ b/boot/scene.c @@ -70,13 +70,6 @@ void scene_destroy(struct scene *scn) free(scn); } -int scene_title_set(struct scene *scn, uint id) -{ - scn->title_id = id; - - return 0; -} - int scene_obj_count(struct scene *scn) { return list_count_nodes(&scn->obj_head); |
