From patchwork Sun Sep 12 00:15:29 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colin Ian King X-Patchwork-Id: 1526812 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=canonical.com header.i=@canonical.com header.a=rsa-sha256 header.s=20210705 header.b=TUOPwRc5; dkim-atps=neutral Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=fwts-devel-bounces@lists.ubuntu.com; receiver=) Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4H6VWG1y3Sz9sVw for ; Sun, 12 Sep 2021 10:15:37 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1mPD9f-0006JN-LY; Sun, 12 Sep 2021 00:15:31 +0000 Received: from smtp-relay-canonical-1.internal ([10.131.114.174] helo=smtp-relay-canonical-1.canonical.com) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1mPD9d-0006JH-Nz for fwts-devel@lists.ubuntu.com; Sun, 12 Sep 2021 00:15:29 +0000 Received: from localhost (1.general.cking.uk.vpn [10.172.193.212]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-1.canonical.com (Postfix) with ESMTPSA id 66F914132E; Sun, 12 Sep 2021 00:15:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1631405729; bh=B5g17yHKkAt4GR3BjpA+AtfQV40yVepr/6Q1Ua5iDPc=; h=From:To:Subject:Date:Message-Id:MIME-Version:Content-Type; b=TUOPwRc5+E+7Vz5w6QlwiPlbghPybbprb51VIgvovyWv86qqGVlJQhB13ncFXQat/ pclIO2q39MTgfS5X9hYltXMVFukl/ffhItsu7dz9HATtNams92HcZEIFG0PKsBAd+g TFkqm2BVjUkV0q7uOwWvek1esJVHi8356vBryjkJzBBwmDOLTd1BSrVeVBUQ4j2wIp Vp27pG0tT0R36soY7sglSmrX5dTO8tTJnYTQFxEI12bwT1iDixpJq5FH8rpxG5wHNa yPNGmBeVI7L0bZNJHXUo0zLljIlrJkk3mMz9wN5GeoDWQlDQ+Zj9yvimWQ7B1Mea7C jbc+CXogTUxkQ== From: Colin King To: fwts-devel@lists.ubuntu.com Subject: [PATCH] lib: use rather than Date: Sun, 12 Sep 2021 01:15:29 +0100 Message-Id: <20210912001529.118983-1-colin.king@canonical.com> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: fwts-devel-bounces@lists.ubuntu.com Sender: "fwts-devel" From: Colin Ian King Should be using poll.h, fixes musl C builds and is the correct way to pick up the poll definitions. Signed-off-by: Colin Ian King Acked-by: Ivan Hu Acked-by: Alex Hung --- src/lib/src/fwts_ipmi.c | 2 +- src/lib/src/fwts_pipeio.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/src/fwts_ipmi.c b/src/lib/src/fwts_ipmi.c index ca7c55bb..9809651e 100644 --- a/src/lib/src/fwts_ipmi.c +++ b/src/lib/src/fwts_ipmi.c @@ -21,7 +21,7 @@ #include #include #include -#include +#include #include #include diff --git a/src/lib/src/fwts_pipeio.c b/src/lib/src/fwts_pipeio.c index 716297c4..f0a49917 100644 --- a/src/lib/src/fwts_pipeio.c +++ b/src/lib/src/fwts_pipeio.c @@ -32,7 +32,7 @@ #include #include -#include +#include #include #include #include