diff options
| author | Ryan <fauxpark@gmail.com> | 2020-12-26 15:56:11 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-26 15:56:11 +1100 |
| commit | 1d1d5da43f86d9dded47c66afec94991d623f114 (patch) | |
| tree | 5f0d4d303a1f5dd67a3d9a19b0f99b8e3f06a4e6 /tmk_core/protocol/lufa | |
| parent | 48f4768d33313e6a6ed48c31f95eb44feda10a51 (diff) | |
| download | qmk_firmware-1d1d5da43f86d9dded47c66afec94991d623f114.tar.gz qmk_firmware-1d1d5da43f86d9dded47c66afec94991d623f114.zip | |
Change include guards in tmk_core/ and drivers/ to pragma once (#11240)
Diffstat (limited to 'tmk_core/protocol/lufa')
| -rw-r--r-- | tmk_core/protocol/lufa/lufa.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tmk_core/protocol/lufa/lufa.h b/tmk_core/protocol/lufa/lufa.h index 71fd7aad8..348a84c03 100644 --- a/tmk_core/protocol/lufa/lufa.h +++ b/tmk_core/protocol/lufa/lufa.h | |||
| @@ -36,8 +36,7 @@ | |||
| 36 | this software. | 36 | this software. |
| 37 | */ | 37 | */ |
| 38 | 38 | ||
| 39 | #ifndef _LUFA_H_ | 39 | #pragma once |
| 40 | #define _LUFA_H_ | ||
| 41 | 40 | ||
| 42 | #include <avr/io.h> | 41 | #include <avr/io.h> |
| 43 | #include <avr/wdt.h> | 42 | #include <avr/wdt.h> |
| @@ -68,5 +67,3 @@ extern host_driver_t lufa_driver; | |||
| 68 | // The header and terminator are not stored to save a few bytes of precious ram | 67 | // The header and terminator are not stored to save a few bytes of precious ram |
| 69 | # define MIDI_SYSEX_BUFFER (API_SYSEX_MAX_SIZE + API_SYSEX_MAX_SIZE / 7 + (API_SYSEX_MAX_SIZE % 7 ? 1 : 0)) | 68 | # define MIDI_SYSEX_BUFFER (API_SYSEX_MAX_SIZE + API_SYSEX_MAX_SIZE / 7 + (API_SYSEX_MAX_SIZE % 7 ? 1 : 0)) |
| 70 | #endif | 69 | #endif |
| 71 | |||
| 72 | #endif | ||
