From patchwork Wed Sep 14 06:29:47 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Baoyou Xie X-Patchwork-Id: 9330445 X-Patchwork-Delegate: sboyd@codeaurora.org Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 588196077F for ; Wed, 14 Sep 2016 06:30:18 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 3CEFE29987 for ; Wed, 14 Sep 2016 06:30:18 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 2CE4F299F9; Wed, 14 Sep 2016 06:30:18 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1D27F29987 for ; Wed, 14 Sep 2016 06:30:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755219AbcINGaP (ORCPT ); Wed, 14 Sep 2016 02:30:15 -0400 Received: from mail-pa0-f49.google.com ([209.85.220.49]:34326 "EHLO mail-pa0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752470AbcINGaO (ORCPT ); Wed, 14 Sep 2016 02:30:14 -0400 Received: by mail-pa0-f49.google.com with SMTP id wk8so2284197pab.1 for ; Tue, 13 Sep 2016 23:30:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=K9q+mM/1Y/Q4XJl3+TujgZ786nbR6G1fJUUz0n+LnOE=; b=BYKjJXHiL7dsM5BjfWD1558LyvZAYIoj46bE72vbGERQFhFvBOzvS0B3fmFzf0buV2 1Bj8abSsgzX6WSGVblnvXc86plaENoq7FyGSX7KIQ58lArXQIsJ+XXxgf9DxEpsS36qk Cz0bhhI7ekhYzig+LDGfxkYYdMaNkwKbj01ug= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=K9q+mM/1Y/Q4XJl3+TujgZ786nbR6G1fJUUz0n+LnOE=; b=T4LfmSLro5O6rbmL1/SchaEUDzIZR3IEDRmYfeCV3AQrMxgmFygm89b8mmE9Dl7TKR ASXz5juileTWjyNMoh83qc1bhpb0l3ba+tC4jseQRCUpM9Uyr4x8HRaY5WJhIrHHt637 wQ6VJlkqYcyKDjQLeMiaMrGlpb+s3oOsQdFbr1qSvhlGWWB8thWRrcXGOhhufIx6Her0 RNGUndJgCaBFUPAcU80kweGfw3ctz9CjC49vlaxi4Si2FWnIla34I8U24i+CHKE27LM/ dOTEYAbvcMWBXFb2d8tS7SLaeBxHXhPo2kKPAncDcugmbAFfC+tLnRdSZTGbJ7ObDxCA 2wgg== X-Gm-Message-State: AE9vXwNslrVCro2rYsgcZSrTdGuDcv2FPcRVtF7rhkMENFfRzCOu5Y7/tFdlukGYIaem1+vv X-Received: by 10.66.222.37 with SMTP id qj5mr1546955pac.145.1473834613930; Tue, 13 Sep 2016 23:30:13 -0700 (PDT) Received: from localhost.localdomain ([104.237.91.21]) by smtp.gmail.com with ESMTPSA id 81sm35154266pfm.90.2016.09.13.23.30.05 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 13 Sep 2016 23:30:13 -0700 (PDT) From: Baoyou Xie To: mturquette@baylibre.com, sboyd@codeaurora.org, linus.walleij@linaro.org, arnd@arndb.de Cc: linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, baoyou.xie@linaro.org, xie.baoyou@zte.com.cn Subject: [PATCH] clk: versatile: add missing header dependencies Date: Wed, 14 Sep 2016 14:29:47 +0800 Message-Id: <1473834587-22526-1-git-send-email-baoyou.xie@linaro.org> X-Mailer: git-send-email 2.7.4 Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP We get 1 warning when building kernel with W=1: drivers/clk/versatile/clk-realview.c:54:13: warning: no previous prototype for 'realview_clk_init' [-Wmissing-prototypes] In fact, this function is declared in clk-realview.h, so this patch add missing header dependencies. Signed-off-by: Baoyou Xie --- drivers/clk/versatile/clk-realview.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/versatile/clk-realview.c b/drivers/clk/versatile/clk-realview.c index c56efc7..f662fd1 100644 --- a/drivers/clk/versatile/clk-realview.c +++ b/drivers/clk/versatile/clk-realview.c @@ -10,6 +10,7 @@ #include #include #include +#include #include "clk-icst.h"