1
0
Fork 0

Change include guards in quantum/ to pragma once (#11239)

This commit is contained in:
Ryan 2020-12-26 15:53:12 +11:00 committed by GitHub
parent 53eb7f0774
commit 48f4768d33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
50 changed files with 68 additions and 204 deletions

View file

@ -22,8 +22,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#ifndef LCD_BACKLIGHT_H_
#define LCD_BACKLIGHT_H_
#pragma once
#include <stdint.h>
// Helper macros for storing hue, staturation and intensity as unsigned integers
@ -41,5 +41,3 @@ uint8_t lcd_get_backlight_brightness(void);
void lcd_backlight_hal_init(void);
void lcd_backlight_hal_color(uint16_t r, uint16_t g, uint16_t b);
#endif /* LCD_BACKLIGHT_H_ */