1
0
Fork 0

clang-format changes

This commit is contained in:
skullY 2019-08-30 11:19:03 -07:00 committed by skullydazed
parent 61af76a10d
commit b624f32f94
502 changed files with 32259 additions and 39062 deletions

View file

@ -23,40 +23,31 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "debug.h"
#ifdef NKRO_ENABLE
#include "keycode_config.h"
extern keymap_config_t keymap_config;
# include "keycode_config.h"
extern keymap_config_t keymap_config;
#endif
static host_driver_t *driver;
static uint16_t last_system_report = 0;
static uint16_t last_consumer_report = 0;
static uint16_t last_system_report = 0;
static uint16_t last_consumer_report = 0;
void host_set_driver(host_driver_t *d) { driver = d; }
void host_set_driver(host_driver_t *d)
{
driver = d;
}
host_driver_t *host_get_driver(void) { return driver; }
host_driver_t *host_get_driver(void)
{
return driver;
}
uint8_t host_keyboard_leds(void)
{
uint8_t host_keyboard_leds(void) {
if (!driver) return 0;
return (*driver->keyboard_leds)();
}
/* send report */
void host_keyboard_send(report_keyboard_t *report)
{
void host_keyboard_send(report_keyboard_t *report) {
if (!driver) return;
#if defined(NKRO_ENABLE) && defined(NKRO_SHARED_EP)
if (keyboard_protocol && keymap_config.nkro) {
/* The callers of this function assume that report->mods is where mods go in.
* But report->nkro.mods can be at a different offset if core keyboard does not have a report ID.
*/
report->nkro.mods = report->mods;
report->nkro.mods = report->mods;
report->nkro.report_id = REPORT_ID_NKRO;
} else
#endif
@ -76,8 +67,7 @@ void host_keyboard_send(report_keyboard_t *report)
}
}
void host_mouse_send(report_mouse_t *report)
{
void host_mouse_send(report_mouse_t *report) {
if (!driver) return;
#ifdef MOUSE_SHARED_EP
report->report_id = REPORT_ID_MOUSE;
@ -85,8 +75,7 @@ void host_mouse_send(report_mouse_t *report)
(*driver->send_mouse)(report);
}
void host_system_send(uint16_t report)
{
void host_system_send(uint16_t report) {
if (report == last_system_report) return;
last_system_report = report;
@ -94,8 +83,7 @@ void host_system_send(uint16_t report)
(*driver->send_system)(report);
}
void host_consumer_send(uint16_t report)
{
void host_consumer_send(uint16_t report) {
if (report == last_consumer_report) return;
last_consumer_report = report;
@ -103,12 +91,6 @@ void host_consumer_send(uint16_t report)
(*driver->send_consumer)(report);
}
uint16_t host_last_system_report(void)
{
return last_system_report;
}
uint16_t host_last_system_report(void) { return last_system_report; }
uint16_t host_last_consumer_report(void)
{
return last_consumer_report;
}
uint16_t host_last_consumer_report(void) { return last_consumer_report; }