summaryrefslogtreecommitdiffstats
path: root/internal.c
diff options
context:
space:
mode:
Diffstat (limited to 'internal.c')
-rw-r--r--internal.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/internal.c b/internal.c
index 69624a0..98a8463 100644
--- a/internal.c
+++ b/internal.c
@@ -248,18 +248,6 @@ uint32_t mmio_readl(void *addr)
return *(volatile uint32_t *) addr;
}
-void internal_delay(int usecs)
-{
- /* If the delay is >1 s, use usleep because timing does not need to
- * be so precise.
- */
- if (usecs > 1000000) {
- usleep(usecs);
- } else {
- myusec_delay(usecs);
- }
-}
-
/* No-op shutdown() for programmers which don't need special handling */
int noop_shutdown(void)
{
OpenPOWER on IntegriCloud