From ec1d304a454385f4ca6e85d9965e973f76d29362 Mon Sep 17 00:00:00 2001 From: elpekenin Date: Mon, 19 May 2025 14:08:07 +0200 Subject: [PATCH] PR feedback --- quantum/led.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/quantum/led.h b/quantum/led.h index 85819b20470..669e93e1944 100644 --- a/quantum/led.h +++ b/quantum/led.h @@ -19,7 +19,6 @@ along with this program. If not, see . #include #include -#include "util.h" /* FIXME: Add doxygen comments here. */ @@ -37,8 +36,7 @@ typedef union { bool kana : 1; uint8_t reserved : 3; }; -} PACKED led_t; -_Static_assert(sizeof(led_t) == sizeof(uint8_t), "Invalid size for 'led_t'"); +} led_t; void led_set(uint8_t usb_led);