summaryrefslogtreecommitdiff
path: root/tmk_core/protocol/lufa/lufa.c
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2021-05-18 17:02:28 +1000
committerGitHub <noreply@github.com>2021-05-18 17:02:28 +1000
commit58142f0726147d538167ff3ab793743348f40dcd (patch)
treee3db28a5c97c75c101af821283c56ce4dc017a3a /tmk_core/protocol/lufa/lufa.c
parent6cdc996e0b40e9cd9a368e5ac2be2341aa9d6747 (diff)
Fixup housekeeping from being invoked twice per loop. (#12933)
Diffstat (limited to 'tmk_core/protocol/lufa/lufa.c')
-rw-r--r--tmk_core/protocol/lufa/lufa.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tmk_core/protocol/lufa/lufa.c b/tmk_core/protocol/lufa/lufa.c
index 85d71d0835..63619fdb3b 100644
--- a/tmk_core/protocol/lufa/lufa.c
+++ b/tmk_core/protocol/lufa/lufa.c
@@ -1107,8 +1107,7 @@ int main(void) {
#endif
// Run housekeeping
- housekeeping_task_kb();
- housekeeping_task_user();
+ housekeeping_task();
}
}