summaryrefslogtreecommitdiff
path: root/boot/scene.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2024-10-14 16:32:02 -0600
committerSimon Glass <sjg@chromium.org>2024-10-18 14:10:22 -0600
commit96cbafb1d2902cfbf8a7776f258e97b4394d00fe (patch)
tree86b8382032e3bde7a96b27ec1d6f4052e89c0541 /boot/scene.c
parentfde707501f614ad57dbbbc6269f1b99b86875c39 (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 <sjg@chromium.org>
Diffstat (limited to 'boot/scene.c')
-rw-r--r--boot/scene.c7
1 files changed, 0 insertions, 7 deletions
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);