Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965154AbcLWISj (ORCPT ); Fri, 23 Dec 2016 03:18:39 -0500 Received: from mail-wj0-f194.google.com ([209.85.210.194]:36831 "EHLO mail-wj0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S938827AbcLWIRT (ORCPT ); Fri, 23 Dec 2016 03:17:19 -0500 From: Sudip Mukherjee To: Boris Brezillon , Richard Weinberger , David Woodhouse , Brian Norris , Marek Vasut , Cyrille Pitchen Cc: linux-kernel@vger.kernel.org, linux-mtd@lists.infradead.org, Sudip Mukherjee Subject: [PATCH] mtd: nand: xway: fix build failure Date: Fri, 23 Dec 2016 08:17:12 +0000 Message-Id: <1482481032-28043-1-git-send-email-sudipm.mukherjee@gmail.com> X-Mailer: git-send-email 1.9.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1091 Lines: 38 The build of mips xway_defconfig was failing with the error: drivers/mtd/nand/xway_nand.c:235:1: warning: data definition has no type or storage class MODULE_DEVICE_TABLE(of, xway_nand_match); ^~~~~~~~~~~~~~~~~~~ drivers/mtd/nand/xway_nand.c:235:1: error: type defaults to 'int' in declaration of 'MODULE_DEVICE_TABLE' [-Werror=implicit-int] It missed to include the header file. Signed-off-by: Sudip Mukherjee --- Build log of next-20161223 is at: https://travis-ci.org/sudipm-mukherjee/parport/jobs/186246753 This error will be fixed but it will now uncover the next error as the build goes on. drivers/mtd/nand/xway_nand.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mtd/nand/xway_nand.c b/drivers/mtd/nand/xway_nand.c index 1f2948c..00168d6 100644 --- a/drivers/mtd/nand/xway_nand.c +++ b/drivers/mtd/nand/xway_nand.c @@ -7,6 +7,7 @@ * Copyright © 2016 Hauke Mehrtens */ +#include #include #include #include -- 1.9.1