Skip to content

Commit

Permalink
fixup! drivers/lcd: add lcd_write_cmd_sequence function
Browse files Browse the repository at this point in the history
  • Loading branch information
gschorcht committed Nov 23, 2024
1 parent b75754a commit 02feadd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/lcd/lcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ void lcd_write_cmd_sequence(lcd_t *dev, const uint8_t *seq, size_t seq_len)
assert(seq_len > 0);
assert(seq);

DEBUG("[%s] %p %u\n", __func__, (void *)seq, seq_len);
DEBUG("[%s] %p %zu\n", __func__, (void *)seq, seq_len);

lcd_ll_acquire(dev);

Expand Down

0 comments on commit 02feadd

Please sign in to comment.