From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.6 required=3.0 tests=DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_PASS,T_DKIM_INVALID, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 50C32C43334 for ; Wed, 5 Sep 2018 18:17:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0CABD2073D for ; Wed, 5 Sep 2018 18:17:44 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="YlspIOby" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 0CABD2073D Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727680AbeIEWtC (ORCPT ); Wed, 5 Sep 2018 18:49:02 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:35156 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727069AbeIEWtC (ORCPT ); Wed, 5 Sep 2018 18:49:02 -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=eAlWR8Uagh6DtmquvUerKt75ti0Icn4i7s+MVemhcVs=; b=YlspIObyoeyM5JIhWkBJ3uxhA wU9K54HH1/nna+LhewNMO7UEwGYjlzFECizQbpvxiD8cIUyClg7ZOOIIIMWUcFScJ0br2bcZinsAb eu0aDvybnkyFY0LR3W7xHn+C7A5g36bXXLFr2ZQU/d4o7DOMt6rLs1OSDNDGIY3LRSLCP8QjU1FGq HnexI9hK76hy02pu185OQz9JAD49GEuSZ3ETYngRgVBoERb6Uo+pGaGhj2VOolq59tjZCddH9PQOu RLUAYHNWTAbLjG8387yinWWtf7VYvjWffNfw8uibldQSo0bGVlDPol4jqKDVFTakqSF+3FOKGWKY2 SvYjsp2aA==; 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 1fxcMp-00069z-Q3; Wed, 05 Sep 2018 18:17:27 +0000 To: LKML , linux-mtd@lists.infradead.org Cc: Geert Uytterhoeven , Miquel Raynal , Yoshinori Sato , Rich Felker , Jacopo Mondi , Magnus Damm From: Randy Dunlap Subject: [PATCH] arch/sh: fix build warning in mach-kfr2r09/setup.c Message-ID: Date: Wed, 5 Sep 2018 11:17:26 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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: f3590dc32974 ("media: arch: sh: kfr2r09: Use new renesas-ceu camera driver") Reported-by: Geert Uytterhoeven Suggested-by: Miquel Raynal Signed-off-by: Randy Dunlap Cc: Yoshinori Sato Cc: Rich Felker Cc: Jacopo Mondi Cc: Magnus Damm Cc: linux-mtd@lists.infradead.org --- arch/sh/boards/mach-kfr2r09/setup.c | 1 - 1 file changed, 1 deletion(-) --- lnx-419-rc1.orig/arch/sh/boards/mach-kfr2r09/setup.c +++ lnx-419-rc1/arch/sh/boards/mach-kfr2r09/setup.c @@ -25,7 +25,6 @@ #include #include #include -#include #include #include #include