From patchwork Thu Oct 16 07:39:57 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 5088781 Return-Path: X-Original-To: patchwork-dmaengine@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 35697C11AC for ; Thu, 16 Oct 2014 08:16:17 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 5BADA201C7 for ; Thu, 16 Oct 2014 08:16:16 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7C97A20176 for ; Thu, 16 Oct 2014 08:16:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751423AbaJPIQO (ORCPT ); Thu, 16 Oct 2014 04:16:14 -0400 Received: from mga03.intel.com ([134.134.136.65]:32375 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751829AbaJPIQL (ORCPT ); Thu, 16 Oct 2014 04:16:11 -0400 Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP; 16 Oct 2014 01:13:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,730,1406617200"; d="scan'208";a="619715005" Received: from vkoul-udesk3.iind.intel.com (HELO localhost.localdomain) ([10.223.96.11]) by orsmga002.jf.intel.com with ESMTP; 16 Oct 2014 01:15:37 -0700 From: Vinod Koul To: Greg Kroah-Hartman Cc: Nicolas Ferre , Jiri Slaby , linux-serial@vger.kernel.org, dmaengine@vger.kernel.org, Andy Shevchenko , Vinod Koul Subject: [PATCH] serial: atmel: add missing dmaengine header Date: Thu, 16 Oct 2014 13:09:57 +0530 Message-Id: <1413445197-22304-1-git-send-email-vinod.koul@intel.com> X-Mailer: git-send-email 1.7.0.4 Sender: dmaengine-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: dmaengine@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The atmel serial driver uses dmaengine APIs but never included the dmaengine header as it was getting inculded thru one of driver headers. commit 3d588f83e4d6a5230d9094b97d38621cbaa9a972 - "dmaengine: dw: split dma-dw.h to platform and private parts" broke this as it moved headers around. Fix this by doing the right thing to include the dmaengine header Reported-by: kbuild test robot Signed-off-by: Vinod Koul Acked-by: Greg Kroah-Hartman Acked-by: Nicolas Ferre --- Greg, since this is path which broke this is sitting in my next, would it be okay to carry this thru dmaengine tree as get it merged in current window. Planning to send pull request in day or so to Linus drivers/tty/serial/atmel_serial.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/tty/serial/atmel_serial.c b/drivers/tty/serial/atmel_serial.c index d7d4584..edde3ec 100644 --- a/drivers/tty/serial/atmel_serial.c +++ b/drivers/tty/serial/atmel_serial.c @@ -37,6 +37,7 @@ #include #include #include +#include #include #include #include