From patchwork Fri Jan 31 09:32:20 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Madhavan Krishnan X-Patchwork-Id: 2765 Return-Path: Received: from mail-wm1-x330.google.com (mail-wm1-x330.google.com [IPv6:2a00:1450:4864:20::330]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id C5F65607F3 for ; Fri, 31 Jan 2020 10:32:26 +0100 (CET) Received: by mail-wm1-x330.google.com with SMTP id t14so7853080wmi.5 for ; Fri, 31 Jan 2020 01:32:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=qAy3wLFIK6G3aQnviyB8rV9pncYj9jS3oh7nm4z5KYg=; b=jtADrwHiGVPqPwuF41cisbDmlxFd25PXUSr11tymSp6xU3UgJecs/sxSnXpRiTEl+1 jhxIy5yJc4UxogeGu8earircg7nXzCkLhSHr0LfL8iJkOSfbmaE5qY3KIqqLFtTUo10F vvRHvirW17fp0daEFJtkFz2dt4nvxHvmQzjg4NxMIqeeLxbOZVZfcmahZBQ1oKHMGtLO 05EU2PYx02SJkgL+agqcEyiEXCI1hH6u3X7HbkyqGGMCsORJeFNsJRYztxyVGL0esgax DaZVYvtpzYIGx2qHbo+8kP7QpU6+JsCy72rhmS2bA9YWi/rnf/jo89kB1L/kYShGLS6A Uz2Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=qAy3wLFIK6G3aQnviyB8rV9pncYj9jS3oh7nm4z5KYg=; b=EC8At5vzOhUyXDdUzmXHkr775ec4OFJjh1eG8nLfl2eBFNuFkAk6cxiDpz/jkCaQ71 Uk7dbSQ0ygaORM64DqlE5Foxt0kMmsic4wJSJtB6d+dj38qeTdasZAhOgQk6LiYdiAvc bJ4slpEUvmW/letwJRyICT+T8U2urIc8W3RFXqqcEvTzioYcGp2iU2eAUXGxXRGFwQyf l2RW4cxnQ3e/+csuqY814e+irwLfcvMW7F/ImpT7oGRM71P8vy6M7cd53czomjrhlvLA wd5WO8RcY/ZS58PpCwDvGpWbB8QRF7LwVZEIqrkFpUFxsNfw5LUV3kRvUT4iLTAYE5ig 1L0A== X-Gm-Message-State: APjAAAXMNY1oihxC1XCMhTOjXo9HY3mb4gPoGziD/KeUEfMVj8aAtyap WGNE/kie9NcYKcPL/wEMi3bMq+nVqNSHbQ== X-Google-Smtp-Source: APXvYqw2rgOXo9BKEvV89gWBj34i+ULRHbsT1pMLe8gNQolAiLVGBMGRQ/y/ls/r+SD7MQAotHsjPQ== X-Received: by 2002:a1c:1b93:: with SMTP id b141mr11568591wmb.114.1580463145919; Fri, 31 Jan 2020 01:32:25 -0800 (PST) Received: from lhg-hackbox.linaro.org.de ([2a01:4f8:10a:2685::2]) by smtp.gmail.com with ESMTPSA id a184sm10234209wmf.29.2020.01.31.01.32.25 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 31 Jan 2020 01:32:25 -0800 (PST) From: Madhavan Krishnan To: libcamera-devel@lists.libcamera.org Cc: peter.griffin@linaro.org, moorthy.baskaravenkatraman-sambamoorthy@linaro.org, madhavan.krishnan@linaro.org Date: Fri, 31 Jan 2020 10:32:20 +0100 Message-Id: <1580463140-31163-1-git-send-email-madhavan.krishnan@linaro.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: References: X-Mailman-Approved-At: Fri, 31 Jan 2020 17:47:25 +0100 Subject: [libcamera-devel] [PATCH v3] libcamera: pipeline_handler: Fix the compilation issue in musl X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Jan 2020 09:32:26 -0000 sys/sysmacros.h was an incorrect choice, which doesn't work with musl. Fixes: effe4d6 Signed-off-by: Madhavan Krishnan --- src/libcamera/include/pipeline_handler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/include/pipeline_handler.h b/src/libcamera/include/pipeline_handler.h index a6c1e1f..97157dd 100644 --- a/src/libcamera/include/pipeline_handler.h +++ b/src/libcamera/include/pipeline_handler.h @@ -12,7 +12,7 @@ #include #include #include -#include +#include #include #include