1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

drivers/lcd: remove const for dev due to the mutex

This commit is contained in:
Gunar Schorcht 2023-07-12 18:12:43 +02:00
parent 04c3facd8e
commit 9dde49dd23

View File

@ -57,7 +57,7 @@ static uint8_t _lcd_color_depth(const disp_dev_t *disp_dev)
static void _lcd_set_invert(const disp_dev_t *disp_dev, bool invert)
{
const lcd_t *dev = (lcd_t *)disp_dev;
lcd_t *dev = (lcd_t *)disp_dev;
assert(dev);