From patchwork Fri Nov 2 16:14:12 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 10665849 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 83AB5157A for ; Fri, 2 Nov 2018 16:14:18 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6EA202B431 for ; Fri, 2 Nov 2018 16:14:18 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 628982B44B; Fri, 2 Nov 2018 16:14: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=-7.7 required=2.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI 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 E22052B431 for ; Fri, 2 Nov 2018 16:14:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726318AbeKCBVy (ORCPT ); Fri, 2 Nov 2018 21:21:54 -0400 Received: from merlin.infradead.org ([205.233.59.134]:35760 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726260AbeKCBVy (ORCPT ); Fri, 2 Nov 2018 21:21:54 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.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=11TOd3whKUGdYfwECPP0Gbi25PRrhS/XQ7psCJle1Zc=; b=gJ4tB1lkiufiAu8HeBMfShtRIW 8e7DUmrYbySF1P8abjTWxyBiZFrM+gweEHJ6GrTAG8lIHt4ByerzJLInoqnYmVkNsSwBFbh5U++sO kzzP1YxWNN2ewVqZbzy0/c2yhCeMXeREbB90oIlZs/opse+ZQllQ7hy9aqoiTv3zhneW+qUuVIE+m 9DgWFMryGYIUGDCDg/Xn+7qGzPkUYPwT9tTNibFwfmm9fGqcE9L04+RkWstbKBWWZi3Q/BFE0UF0g s0J0AdTwQUcRyqLrFquQbXduj6o/F2bYxxXU2ZmcLu9JM7IwzRaShe8aw6Nu5RL6OkyoWevjP2o57 5XHiOjOw==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=midway.dunlab) by merlin.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1gIc5N-0003le-Um; Fri, 02 Nov 2018 16:14:14 +0000 To: LKML Cc: Geert Uytterhoeven , Miquel Raynal , Jacopo Mondi , Yoshinori Sato , Rich Felker , Magnus Damm , linux-mtd@lists.infradead.org, linux-sh@vger.kernel.org, Andrew Morton From: Randy Dunlap Subject: [PATCH v2] arch/sh: mach-kfr2r09: fix struct mtd_oob_ops build warning Message-ID: <99e03339-5fab-bcdf-902d-962084db86e8@infradead.org> Date: Fri, 2 Nov 2018 09:14:12 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.2.1 MIME-Version: 1.0 Content-Language: en-US Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Randy Dunlap arch/sh/boards/mach-kfr2r09/setup.c does not need to #include , and doing so causes a build warning, so drop that header file. In file included from ../arch/sh/boards/mach-kfr2r09/setup.c:28: ../include/linux/mtd/onenand.h:225:12: warning: 'struct mtd_oob_ops' declared inside parameter list will not be visible outside of this definition or declaration struct mtd_oob_ops *ops); Fixes: 33893d7aa000 ("sh: kfr2r09 board support - NAND flash") Reported-by: Geert Uytterhoeven Suggested-by: Miquel Raynal Signed-off-by: Randy Dunlap Reviewed-by: Miquel Raynal Acked-by: Jacopo Mondi Cc: Yoshinori Sato Cc: Rich Felker Cc: Jacopo Mondi Cc: Magnus Damm Cc: linux-mtd@lists.infradead.org Cc: linux-sh@vger.kernel.org --- v2: fix the Fixes commit ID and add Ack from Jacopo. arch/sh/boards/mach-kfr2r09/setup.c | 1 - 1 file changed, 1 deletion(-) --- linux-next-20181101.orig/arch/sh/boards/mach-kfr2r09/setup.c +++ linux-next-20181101/arch/sh/boards/mach-kfr2r09/setup.c @@ -25,7 +25,6 @@ #include #include #include -#include #include #include #include