summaryrefslogtreecommitdiff
path: root/drivers/led/issi/is31flcommon.h
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2023-06-23 22:50:31 +0100
committerGitHub <noreply@github.com>2023-06-23 22:50:31 +0100
commit3156cf6da0b36403875b99b0417cb22e2a4f0963 (patch)
tree87a572243b1861220152b4ca3e0ef6ff86ab0c74 /drivers/led/issi/is31flcommon.h
parentb2a7420a2218767ce2b8a0a0addb55e963321ca1 (diff)
Remove use of __flash within LED drivers (#21343)
Diffstat (limited to 'drivers/led/issi/is31flcommon.h')
-rw-r--r--drivers/led/issi/is31flcommon.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/led/issi/is31flcommon.h b/drivers/led/issi/is31flcommon.h
index 18432ffc31..4b3add558b 100644
--- a/drivers/led/issi/is31flcommon.h
+++ b/drivers/led/issi/is31flcommon.h
@@ -43,7 +43,7 @@ typedef struct is31_led {
uint8_t b;
} __attribute__((packed)) is31_led;
-extern const is31_led __flash g_is31_leds[RGB_MATRIX_LED_COUNT];
+extern const is31_led PROGMEM g_is31_leds[RGB_MATRIX_LED_COUNT];
#elif defined(LED_MATRIX_ENABLE)
typedef struct is31_led {
@@ -51,11 +51,11 @@ typedef struct is31_led {
uint8_t v;
} __attribute__((packed)) is31_led;
-extern const is31_led __flash g_is31_leds[LED_MATRIX_LED_COUNT];
+extern const is31_led PROGMEM g_is31_leds[LED_MATRIX_LED_COUNT];
#endif
#ifdef ISSI_MANUAL_SCALING
-extern const is31_led __flash g_is31_scaling[];
+extern const is31_led PROGMEM g_is31_scaling[];
void IS31FL_set_manual_scaling_buffer(void);
#endif