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.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT 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 AC4BEC33CAF for ; Thu, 16 Jan 2020 19:07:03 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 76EE6206E6 for ; Thu, 16 Jan 2020 19:07:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1579201623; bh=4rsPsug2hH4OP9DXtOETkYKx2Y264/RLBnDXf25S6G4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=xYBoThAEMpUFr1dAKcc9NFxa8fJg6rZAdTrIrpte2YfUT++cu1yy6/I2wqYyZfEtx MpUPWBgzdOBBJdIqnsXESFkFLiVmRCZD4CtIwKkvapWX2fbZd41yuFJf1u/gsfeHj3 w4l8GeXRU9HRslOrUj8xSkBnSLnKOCCJ53B97zzE= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388382AbgAPTHB (ORCPT ); Thu, 16 Jan 2020 14:07:01 -0500 Received: from mail.kernel.org ([198.145.29.99]:52416 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730172AbgAPRBY (ORCPT ); Thu, 16 Jan 2020 12:01:24 -0500 Received: from sasha-vm.mshome.net (c-73-47-72-35.hsd1.nh.comcast.net [73.47.72.35]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 9DB752077B; Thu, 16 Jan 2020 17:01:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1579194083; bh=4rsPsug2hH4OP9DXtOETkYKx2Y264/RLBnDXf25S6G4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=tmz37ShPvrDqcYAM7pSvsQ7q+SzBb+mtL6Gzo13VbCFCbDA/RtcpaZW9OFa9ceb6M CbEMznfjxdPa7asf/SkOmlMPFzTMymH5t2USOeTjAMIXQdUFdM450hfHg61cdzFJLT SaknxPBEjewa6DnkkKH0pmMyqwJLxMIc5J0E9rgA= From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Jacopo Mondi , Hans Verkuil , Mauro Carvalho Chehab , Sasha Levin , linux-sh@vger.kernel.org Subject: [PATCH AUTOSEL 4.19 188/671] media: sh: migor: Include missing dma-mapping header Date: Thu, 16 Jan 2020 11:51:37 -0500 Message-Id: <20200116165940.10720-71-sashal@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200116165940.10720-1-sashal@kernel.org> References: <20200116165940.10720-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Jacopo Mondi [ Upstream commit 5c88ee02932a964096cbbcc7c9f38b78d230bacb ] Since the removal of the stale soc_camera headers, Migo-R board fails to build due to missing dma-mapping include directive. Include missing dma-mapping.h header in Migo-R board file to fix the build error. Fixes: a50c7738e8ae ("media: sh: migor: Remove stale soc_camera include") Signed-off-by: Jacopo Mondi Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Sasha Levin --- arch/sh/boards/mach-migor/setup.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/sh/boards/mach-migor/setup.c b/arch/sh/boards/mach-migor/setup.c index 254f2c662703..6cd3cd468047 100644 --- a/arch/sh/boards/mach-migor/setup.c +++ b/arch/sh/boards/mach-migor/setup.c @@ -5,6 +5,7 @@ * Copyright (C) 2008 Magnus Damm */ #include +#include #include #include #include -- 2.20.1