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=-10.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable 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 E3F56C433E3 for ; Tue, 23 Jun 2020 21:29:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id B4B6C20724 for ; Tue, 23 Jun 2020 21:29:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1592947741; bh=xXwN8hLNJQDhOJnlgbYrqovBdM+a//tCCWB3sl6Phkg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=MUHbAGy2hI1p2l7th4AZdUxxVoBji55Cx2zjzYePEOz0Vn4esY7wjCEGAdHW4Wv/C ahvu4Gtcl4JzLhsFS5h4Ju0ZE1mpXZn0XeS3A2iOESRozXVdESyqR3ull2Ml2awt6p Y9P5K2b0iuik8ZrRBSJ2PCX3Fpg7u73sTkFSfOXE= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388880AbgFWUPW (ORCPT ); Tue, 23 Jun 2020 16:15:22 -0400 Received: from mail.kernel.org ([198.145.29.99]:58356 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388588AbgFWUPV (ORCPT ); Tue, 23 Jun 2020 16:15:21 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 075A52080C; Tue, 23 Jun 2020 20:15:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1592943321; bh=xXwN8hLNJQDhOJnlgbYrqovBdM+a//tCCWB3sl6Phkg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=X50+6l8VVWGmGe+wU0ZPU6uKUYOkQ1I18MKN/t/6vlBcxz3OXZpqj3ePDTNSygKqv fvF0pu8cKhwtsCtOav+M8FwWj6oi/YnnPgAerzCX6EiTuib9W0Fw2Re9zqV/+K6KR2 OzAgsUIlSqIgVOx/APMxbo8HiycRUhCtmyQw7FBc= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, kernel test robot , Max Staudt , Wolfram Sang , Sasha Levin Subject: [PATCH 5.7 347/477] i2c: icy: Fix build with CONFIG_AMIGA_PCMCIA=n Date: Tue, 23 Jun 2020 21:55:44 +0200 Message-Id: <20200623195423.940821429@linuxfoundation.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200623195407.572062007@linuxfoundation.org> References: <20200623195407.572062007@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Max Staudt [ Upstream commit cdb555397f438592bab00599037c347b700cf397 ] This has been found by the Kernel Test Robot: http://lkml.iu.edu/hypermail/linux/kernel/2006.0/06862.html With CONFIG_AMIGA_PCMCIA=n, io_mm.h does not pull in amigahw.h and ZTWO_VADDR is undefined. Add forgotten include to i2c-icy.c Fixes: 4768e90ecaec ("i2c: Add i2c-icy for I2C on m68k/Amiga") Reported-by: kernel test robot Signed-off-by: Max Staudt Signed-off-by: Wolfram Sang Signed-off-by: Sasha Levin --- drivers/i2c/busses/i2c-icy.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/i2c/busses/i2c-icy.c b/drivers/i2c/busses/i2c-icy.c index 271470f4d8a9b..66c9923fc7665 100644 --- a/drivers/i2c/busses/i2c-icy.c +++ b/drivers/i2c/busses/i2c-icy.c @@ -43,6 +43,7 @@ #include #include +#include #include #include -- 2.25.1