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:
parent
04c3facd8e
commit
9dde49dd23
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user