From patchwork Wed Aug 15 16:12:07 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 10566711 X-Patchwork-Delegate: andy.shevchenko@gmail.com Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 342DA1510 for ; Wed, 15 Aug 2018 16:12:29 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 20F0B29C42 for ; Wed, 15 Aug 2018 16:12:29 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 14A3729D3B; Wed, 15 Aug 2018 16:12:29 +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=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI,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 B36CC29C42 for ; Wed, 15 Aug 2018 16:12:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729572AbeHOTE6 (ORCPT ); Wed, 15 Aug 2018 15:04:58 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:43716 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729381AbeHOTE6 (ORCPT ); Wed, 15 Aug 2018 15:04:58 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: Content-Type:MIME-Version:Date:Message-ID:Subject:From:Cc:To:Sender:Reply-To: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=Togc7bt58Igrfm0tmExX88bsaB5ErW/5bwddeZosfbY=; b=FPezjwQuue8U4DtBLrJJp8/7g ii7daqQc7XJQP6PLugpEdjguqI7MVVlO46dDqLv4PTZIbNpjwcYtB3rZdGGkSUgoJwnUn2gBgIfW2 KA5X2gstNS0R+ev1+BCohU/NTnfkMbXrtXRfEGQqCSrc86x1GZJGUSBPhpdBdrw/jmf9p/0g6EdJm mxV97MOvn0an1TVd4dBB04F/t4jXCqTnPlOhFmXlFCmO9N/29Fy2HNmOwvtNndu94qmkWrgSQTc29 kbKPc8ZyCfEqQwwyKci6rMnUjhhOJ4l00QBPNLYucvyOhTlbTbaSPQWdJ/cM12YWwmffMnsAiOhz0 LHexlLO3A==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=midway.dunlab) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fpyP5-0008Du-Ug; Wed, 15 Aug 2018 16:12:12 +0000 To: LKML , Platform Driver Cc: Zha Qipeng , Darren Hart , Andy Shevchenko From: Randy Dunlap Subject: [PATCH] platform/x86: fix intel_punit_ipc.c build errors Message-ID: Date: Wed, 15 Aug 2018 09:12:07 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 Content-Language: en-US Sender: platform-driver-x86-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: platform-driver-x86@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Randy Dunlap Fix build errors by #including . ../drivers/platform/x86/intel_punit_ipc.c: In function 'ipc_read_status': ../drivers/platform/x86/intel_punit_ipc.c:55:2: error: implicit declaration of function 'readl' [-Werror=implicit-function-declaration] return readl(ipcdev->base[type][BASE_IFACE]); ../drivers/platform/x86/intel_punit_ipc.c: In function 'ipc_write_cmd': ../drivers/platform/x86/intel_punit_ipc.c:60:2: error: implicit declaration of function 'writel' [-Werror=implicit-function-declaration] writel(cmd, ipcdev->base[type][BASE_IFACE]); Signed-off-by: Randy Dunlap Cc: Zha Qipeng Cc: platform-driver-x86@vger.kernel.org --- Found in linux-next but applies to current mainline also. drivers/platform/x86/intel_punit_ipc.c | 1 + 1 file changed, 1 insertion(+) --- linux-next-20180815.orig/drivers/platform/x86/intel_punit_ipc.c +++ linux-next-20180815/drivers/platform/x86/intel_punit_ipc.c @@ -18,6 +18,7 @@ #include #include #include +#include #include #include