From 90ffecdf2bc1ce97dd7021ba9845a4b3741975b7 Mon Sep 17 00:00:00 2001 From: TOKITA Hiroshi Date: Fri, 26 May 2023 14:49:05 +0900 Subject: [PATCH] fb: cfb: Remove unused value The `desc` value in cfb_framebuffer_clear is not used. Removed it. Signed-off-by: TOKITA Hiroshi --- subsys/fb/cfb.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/subsys/fb/cfb.c b/subsys/fb/cfb.c index 3d81da73b2..379066e3b5 100644 --- a/subsys/fb/cfb.c +++ b/subsys/fb/cfb.c @@ -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) {