Skip to content

Commit 853c8d4

Browse files
authored
Format code according to conventions (qmk#20846)
1 parent 2ddad24 commit 853c8d4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/oled/oled_driver.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
109109
# define OLED_PRE_CHARGE_PERIOD 0xF1
110110
#endif
111111

112-
113112
#define OLED_ALL_BLOCKS_MASK (((((OLED_BLOCK_TYPE)1 << (OLED_BLOCK_COUNT - 1)) - 1) << 1) | 1)
114113

115114
#define OLED_IC_HAS_HORIZONTAL_MODE (OLED_IC == OLED_IC_SSD1306)
@@ -142,7 +141,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
142141
// parts of the display unusable or don't get cleared correctly
143142
// and also allows for drawing & inverting
144143
uint8_t oled_buffer[OLED_MATRIX_SIZE];
145-
uint8_t *oled_cursor;
144+
uint8_t * oled_cursor;
146145
OLED_BLOCK_TYPE oled_dirty = 0;
147146
bool oled_initialized = false;
148147
bool oled_active = false;

0 commit comments

Comments
 (0)