diff options
author | lokher <lokher@gmail.com> | 2022-12-06 17:10:48 +0800 |
---|---|---|
committer | lokher <lokher@gmail.com> | 2022-12-07 15:50:49 +0800 |
commit | a336c2c5005251e4cb0f3a62ccabdb4cfccad915 (patch) | |
tree | 3c948b631a5e3b6f940dabe02fad3c7487e6f350 /keyboards/keychron/k8_pro/k8_pro.c | |
parent | 27fc28fd2ff52e079a5bc58d6aaea4c752420615 (diff) |
Merge upstream master to 2022 Q4 breaking change
Diffstat (limited to 'keyboards/keychron/k8_pro/k8_pro.c')
-rw-r--r-- | keyboards/keychron/k8_pro/k8_pro.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/keychron/k8_pro/k8_pro.c b/keyboards/keychron/k8_pro/k8_pro.c index 05df78e167..e772aaf909 100644 --- a/keyboards/keychron/k8_pro/k8_pro.c +++ b/keyboards/keychron/k8_pro/k8_pro.c @@ -299,7 +299,7 @@ void via_command_kb(uint8_t *data, uint8_t length) { void raw_hid_receive(uint8_t *data, uint8_t length) { switch (data[0]) { case RAW_HID_CMD: - raw_hid_receive_kb(data, length); + via_command_kb(data, length); break; } } |