From 44806ba74abfe98f6e716689e2bdbe3a5d5dd70c Mon Sep 17 00:00:00 2001 From: Peter Bigot Date: Fri, 17 Jan 2020 11:45:46 -0600 Subject: [PATCH] samples/drivers/display: remove redundant include drivers/display.h was being included both as a double-quote direct include and an angle-quote in the drivers parent directory. Both resolve to the same file. Remove the unqualified reference. Signed-off-by: Peter Bigot --- samples/drivers/display/src/main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/samples/drivers/display/src/main.c b/samples/drivers/display/src/main.c index 0dc16a3b238..af4c45f5300 100644 --- a/samples/drivers/display/src/main.c +++ b/samples/drivers/display/src/main.c @@ -7,7 +7,6 @@ * SPDX-License-Identifier: Apache-2.0 */ -#include "display.h" #include LOG_MODULE_REGISTER(sample, LOG_LEVEL_INF);