fb: cfb: Remove unused value

The `desc` value in cfb_framebuffer_clear is not used.
Removed it.

Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@fujitsu.com>
This commit is contained in:
TOKITA Hiroshi 2023-05-26 14:49:05 +09:00 committed by Fabio Baltieri
parent 4681e0e1a4
commit 90ffecdf2b

View file

@ -407,16 +407,11 @@ static int cfb_invert(const struct char_framebuffer *fb)
int cfb_framebuffer_clear(const struct device *dev, bool clear_display)
{
const struct char_framebuffer *fb = &char_fb;
struct display_buffer_descriptor desc;
if (!fb || !fb->buf) {
return -ENODEV;
}
desc.buf_size = fb->size;
desc.width = fb->x_res;
desc.height = fb->y_res;
desc.pitch = fb->x_res;
memset(fb->buf, 0, fb->size);
if (clear_display) {