summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2022-04-07 00:34:38 +0100
committerAidan MacDonald <amachronic@protonmail.com>2022-05-14 11:29:55 -0400
commit2315266628a886df58560e91c555d1fcb455c7c9 (patch)
tree404e8a59c90efdeed3ac6cc9c70a80c40f44c7be
parentdafc8e5904f6547a306096b67e9b199f6ddfdb3d (diff)
downloadrockbox-2315266628a886df58560e91c555d1fcb455c7c9.tar.gz
rockbox-2315266628a886df58560e91c555d1fcb455c7c9.zip
kernel: remove unused function mutex_test()
No longer needed since the only user was in the Archos code. Change-Id: I763f58050c70f2bb1d8cc0a044c63698f3157a8d
-rw-r--r--firmware/kernel/include/mutex.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/firmware/kernel/include/mutex.h b/firmware/kernel/include/mutex.h
index 4778eb7f11..816d8040cb 100644
--- a/firmware/kernel/include/mutex.h
+++ b/firmware/kernel/include/mutex.h
@@ -36,10 +36,5 @@ struct mutex
36extern void mutex_init(struct mutex *m); 36extern void mutex_init(struct mutex *m);
37extern void mutex_lock(struct mutex *m); 37extern void mutex_lock(struct mutex *m);
38extern void mutex_unlock(struct mutex *m); 38extern void mutex_unlock(struct mutex *m);
39#ifndef HAVE_PRIORITY_SCHEDULING
40/* Deprecated but needed for now - firmware/drivers/ata_mmc.c */
41static inline bool mutex_test(const struct mutex *m)
42 { return m->blocker.thread != NULL; }
43#endif /* HAVE_PRIORITY_SCHEDULING */
44 39
45#endif /* MUTEX_H */ 40#endif /* MUTEX_H */