Index: kernel/generic/src/synch/spinlock.c
===================================================================
--- kernel/generic/src/synch/spinlock.c	(revision ffe4a87f6f04e3b1afccf14bda789427236053b1)
+++ kernel/generic/src/synch/spinlock.c	(revision 7a23d608cbb99296cbb7a611ef7824d57ee7210a)
@@ -177,14 +177,4 @@
 }
 
-/** Find out whether the spinlock is currently unlocked.
- *
- * @param lock		Spinlock.
- * @return		True if the spinlock is not locked, false otherwise.
- */
-bool spinlock_unlocked(spinlock_t *lock)
-{
-	return atomic_get(&lock->val) == 0;
-}
-
 #endif
 
@@ -344,14 +334,4 @@
 }
 
-/** Find out whether the IRQ spinlock is currently unlocked.
- *
- * @param lock		IRQ spinlock.
- * @return		True if the IRQ spinlock is not locked, false otherwise.
- */
-bool irq_spinlock_unlocked(irq_spinlock_t *ilock)
-{
-	return spinlock_unlocked(&ilock->lock);
-}
-
 /** @}
  */
