From patchwork Wed Oct 23 16:00:00 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Krzysztof Kozlowski X-Patchwork-Id: 11207145 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 88F661515 for ; Wed, 23 Oct 2019 16:00:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5E0B52086D for ; Wed, 23 Oct 2019 16:00:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1571846425; bh=9unFG5jOth/SLmbsma9VXKmXB1glCuVYpFM25V1tJhc=; h=From:To:Cc:Subject:Date:List-ID:From; b=KsFG32xUrkz4HnnjU2J4B4clR84PuZMxIJfN9KgWcFd4GD2Sa44HWx4E3TIBjCgBx Q0UPlUTemqyXL7ElTBvn5Gl43RD3Io8cD1xiCDcFGedGnu80rGLygIJJEsRLJ9CTVt 1FlMKL04K8secGEekOPS4uF2QmmIWQytka6XWXR4= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2390513AbfJWQAY (ORCPT ); Wed, 23 Oct 2019 12:00:24 -0400 Received: from mail.kernel.org ([198.145.29.99]:48642 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2390259AbfJWQAY (ORCPT ); Wed, 23 Oct 2019 12:00:24 -0400 Received: from localhost.localdomain (unknown [194.230.155.217]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 5C54020640; Wed, 23 Oct 2019 16:00:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1571846424; bh=9unFG5jOth/SLmbsma9VXKmXB1glCuVYpFM25V1tJhc=; h=From:To:Cc:Subject:Date:From; b=bPqudU3bKvdvVC6f9Fca0bV2hsZ6QP68bieoJIzFLkljzYGj9nSOZrWDk/O/7kwZN KyC/Wl1UcDsjSVfBbMAekLhPO1QPblE6CB/x/9wbusmIWsKbK7p4AAQnkJkrArIJFY MZdFPKWP4zcmSp8OZE2h/Hr3PQsHzXCmvjYk/dwM= From: Krzysztof Kozlowski To: Sylwester Nawrocki , Tomasz Figa , Chanwoo Choi , Michael Turquette , Stephen Boyd , Kukjin Kim , Krzysztof Kozlowski , linux-samsung-soc@vger.kernel.org, linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: kbuild test robot Subject: [PATCH] clk: samsung: exynos5433: Add missing slab.h header for kfree() Date: Wed, 23 Oct 2019 18:00:00 +0200 Message-Id: <20191023160000.409-1-krzk@kernel.org> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org Usage of kfree() requires slab.h header. Otherwise building on x86_64 with COMPILE_TEST fails with: drivers/clk/samsung/clk-exynos5433.c: In function ‘exynos5433_cmu_probe’: drivers/clk/samsung/clk-exynos5433.c:5598:4: error: implicit declaration of function ‘kfree’; did you mean ‘vfree’? [-Werror=implicit-function-declaration] Reported-by: kbuild test robot Signed-off-by: Krzysztof Kozlowski --- drivers/clk/samsung/clk-exynos5433.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/samsung/clk-exynos5433.c b/drivers/clk/samsung/clk-exynos5433.c index 0b60316331a0..4b1aa9382ad2 100644 --- a/drivers/clk/samsung/clk-exynos5433.c +++ b/drivers/clk/samsung/clk-exynos5433.c @@ -13,6 +13,7 @@ #include #include #include +#include #include