diff options
| author | Ryan <fauxpark@gmail.com> | 2021-09-06 06:36:31 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-05 21:36:31 +0100 |
| commit | fe6d6cf76dc827adb2f46d55217dc189eae21b02 (patch) | |
| tree | e97fc05d0efb3064a0c89f719cc5df865959d651 /keyboards/bpiphany/pegasushoof/2015/2015.c | |
| parent | 8a8fdd9a728a4cdc0ddce54fab9bf3b4ff8bf942 (diff) | |
| download | qmk_firmware-fe6d6cf76dc827adb2f46d55217dc189eae21b02.tar.gz qmk_firmware-fe6d6cf76dc827adb2f46d55217dc189eae21b02.zip | |
Remove empty override functions (#14312)
* Remove empty override functions, 0-9
* Remove empty override functions, A-D
* Remove empty override functions, E-H
* Remove empty override functions, handwired
* Remove empty override functions, I-L
* Remove empty override functions, M-P
* Remove empty override functions, Q-T
* Remove empty override functions, U-Z
Diffstat (limited to 'keyboards/bpiphany/pegasushoof/2015/2015.c')
| -rw-r--r-- | keyboards/bpiphany/pegasushoof/2015/2015.c | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/keyboards/bpiphany/pegasushoof/2015/2015.c b/keyboards/bpiphany/pegasushoof/2015/2015.c index 62841e7af..401dc2633 100644 --- a/keyboards/bpiphany/pegasushoof/2015/2015.c +++ b/keyboards/bpiphany/pegasushoof/2015/2015.c | |||
| @@ -23,36 +23,3 @@ extern inline void ph_caps_led_off(void); | |||
| 23 | 23 | ||
| 24 | extern inline void ph_sclk_led_on(void); | 24 | extern inline void ph_sclk_led_on(void); |
| 25 | extern inline void ph_sclk_led_off(void); | 25 | extern inline void ph_sclk_led_off(void); |
| 26 | |||
| 27 | __attribute__ ((weak)) | ||
| 28 | void matrix_init_user(void) { | ||
| 29 | }; | ||
| 30 | |||
| 31 | __attribute__ ((weak)) | ||
| 32 | void matrix_scan_user(void) { | ||
| 33 | } | ||
| 34 | |||
| 35 | __attribute__ ((weak)) | ||
| 36 | bool process_action_user(keyrecord_t *record) { | ||
| 37 | return true; | ||
| 38 | } | ||
| 39 | |||
| 40 | __attribute__ ((weak)) | ||
| 41 | void led_set_user(uint8_t usb_led) { | ||
| 42 | } | ||
| 43 | |||
| 44 | void matrix_init_kb(void) { | ||
| 45 | matrix_init_user(); | ||
| 46 | } | ||
| 47 | |||
| 48 | void matrix_scan_kb(void) { | ||
| 49 | matrix_scan_user(); | ||
| 50 | } | ||
| 51 | |||
| 52 | bool process_action_kb(keyrecord_t *record) { | ||
| 53 | return process_action_user(record); | ||
| 54 | } | ||
| 55 | |||
| 56 | void led_set_kb(uint8_t usb_led) { | ||
| 57 | led_set_user(usb_led); | ||
| 58 | } | ||
