From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from relay12.mail.gandi.net ([217.70.178.232]) by merlin.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1iyX0l-0007fM-Vu for barebox@lists.infradead.org; Mon, 03 Feb 2020 08:23:17 +0000 Received: from geraet.fritz.box (unknown [46.183.103.8]) (Authenticated sender: ahmad@a3f.at) by relay12.mail.gandi.net (Postfix) with ESMTPSA id 9C3C8200008 for ; Mon, 3 Feb 2020 08:22:23 +0000 (UTC) From: Ahmad Fatoum Date: Mon, 3 Feb 2020 09:21:59 +0100 Message-Id: <20200203082159.4455-1-ahmad@a3f.at> MIME-Version: 1.0 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH] acpi: include missing header in To: barebox@lists.infradead.org acpi_sigcmp defined in the header uses memcmp, but no included headers pull in memcmp, which can lead to compile errors in new code, depending on include order. Fix this. Reported-by: @healytpk, https://github.com/saschahauer/barebox/issues/7 Signed-off-by: Ahmad Fatoum --- include/acpi.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/acpi.h b/include/acpi.h index 2d5fd3086a89..b8e73b35df99 100644 --- a/include/acpi.h +++ b/include/acpi.h @@ -6,6 +6,7 @@ #ifndef __ACPI_H_ #define __ACPI_H_ +#include #include #include -- 2.20.1 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox