Commit 90ffecdf authored by TOKITA Hiroshi's avatar TOKITA Hiroshi Committed by Fabio Baltieri
Browse files

fb: cfb: Remove unused value



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

Signed-off-by: default avatarTOKITA Hiroshi <tokita.hiroshi@fujitsu.com>
parent 4681e0e1
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -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) {