From f5e95b9b7b868702dbf76bec20d8152e67bb4ddd Mon Sep 17 00:00:00 2001 From: tychovrahe Date: Tue, 1 Nov 2022 12:07:28 +0100 Subject: [PATCH] fixup! fixup! feat(core): change display type for model R --- core/embed/trezorhal/displays/vg-2864ksweg01.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/embed/trezorhal/displays/vg-2864ksweg01.c b/core/embed/trezorhal/displays/vg-2864ksweg01.c index d57a455738..15c74bbdb3 100644 --- a/core/embed/trezorhal/displays/vg-2864ksweg01.c +++ b/core/embed/trezorhal/displays/vg-2864ksweg01.c @@ -230,9 +230,7 @@ void display_init(void) { display_refresh(); } -void display_reinit(void){ - display_init(); -} +void display_reinit(void) { display_init(); } static inline uint8_t reverse_byte(uint8_t b) { b = (b & 0xF0) >> 4 | (b & 0x0F) << 4;