summaryrefslogtreecommitdiff
path: root/include/lib
diff options
context:
space:
mode:
authordanh-arm <dan.handley@arm.com>2014-06-24 16:44:12 +0100
committerdanh-arm <dan.handley@arm.com>2014-06-24 16:44:12 +0100
commit7eea13523cde5c26e2690d96dd8b99a56f6a6840 (patch)
tree11bef9d9cf647fe6128353835398420c7ac88f52 /include/lib
parent41cf7bdfd7114ee437d165974367a483636df76d (diff)
parent634ec6c23b4037ec6efc2a594fd6b666339171e9 (diff)
Merge pull request #147 from athoelke/at/remove-bakery-mpidr
Remove calling CPU mpidr from bakery lock API
Diffstat (limited to 'include/lib')
-rw-r--r--include/lib/bakery_lock.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/lib/bakery_lock.h b/include/lib/bakery_lock.h
index 037fa7d1..95634cf5 100644
--- a/include/lib/bakery_lock.h
+++ b/include/lib/bakery_lock.h
@@ -44,8 +44,8 @@ typedef struct bakery_lock {
#define NO_OWNER (-1)
void bakery_lock_init(bakery_lock_t *bakery);
-void bakery_lock_get(unsigned long mpidr, bakery_lock_t *bakery);
-void bakery_lock_release(unsigned long mpidr, bakery_lock_t *bakery);
-int bakery_lock_try(unsigned long mpidr, bakery_lock_t *bakery);
+void bakery_lock_get(bakery_lock_t *bakery);
+void bakery_lock_release(bakery_lock_t *bakery);
+int bakery_lock_try(bakery_lock_t *bakery);
#endif /* __BAKERY_LOCK_H__ */