diff options
author | Joel Challis <git@zvecr.com> | 2022-01-26 22:57:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-26 14:57:28 -0800 |
commit | 6a9ec74b329e458c32db4a2e3a3e0478ac8e72b5 (patch) | |
tree | 7e1893eb81676be8712a09944411b087de97f150 /platforms/chibios/suspend.c | |
parent | 9e5f8983ec6f8ed549cdafe6b0178074e51bd938 (diff) | |
download | qmk_firmware-6a9ec74b329e458c32db4a2e3a3e0478ac8e72b5.tar.gz qmk_firmware-6a9ec74b329e458c32db4a2e3a3e0478ac8e72b5.zip |
Remove unused suspend_idle (#16063)
Diffstat (limited to 'platforms/chibios/suspend.c')
-rw-r--r-- | platforms/chibios/suspend.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/platforms/chibios/suspend.c b/platforms/chibios/suspend.c index 9310a99920..d10ddf4501 100644 --- a/platforms/chibios/suspend.c +++ b/platforms/chibios/suspend.c @@ -13,15 +13,6 @@ #include "led.h" #include "wait.h" -/** \brief suspend idle - * - * FIXME: needs doc - */ -void suspend_idle(uint8_t time) { - // TODO: this is not used anywhere - what units is 'time' in? - wait_ms(time); -} - /** \brief suspend power down * * FIXME: needs doc |