From patchwork Thu Jul 5 05:57:27 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 10508093 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 4606D600F5 for ; Thu, 5 Jul 2018 05:58:02 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 34C3E28D44 for ; Thu, 5 Jul 2018 05:58:02 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 2945328E27; Thu, 5 Jul 2018 05:58:02 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI, T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 908A728E35 for ; Thu, 5 Jul 2018 05:58:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751862AbeGEF6B (ORCPT ); Thu, 5 Jul 2018 01:58:01 -0400 Received: from mail.kernel.org ([198.145.29.99]:56122 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751811AbeGEF6A (ORCPT ); Thu, 5 Jul 2018 01:58:00 -0400 Received: from localhost.localdomain (unknown [223.226.33.155]) (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 549BA2417D; Thu, 5 Jul 2018 05:57:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1530770280; bh=5Sj1S4I8IlP4CB7b2a7LvGAdsL2nFX6jFMq3sHHcxlE=; h=From:To:Cc:Subject:Date:From; b=FZK0SckD1kqFeOmZOpvqENBUNdv3QaubOZoKfKX8yKyKroN3Iq7VtRmSt+y2HaWlk 3wA5IEqU0B5JSqMCf9vzkA9QsVZlyUKTORWw1HDRNOty7pSNyKKTBix867aqEMt987 0J5uV+sXq8I/srvlpR0Ud5h3JJBDDQH1s+2Y/yiQ= From: Vinod Koul To: dmaengine@vger.kernel.org Cc: angelo@sysam.it, Vinod Koul Subject: [PATCH] dmaengine: fsl-edma-common: Add missing header module.h Date: Thu, 5 Jul 2018 11:27:27 +0530 Message-Id: <20180705055727.11898-1-vkoul@kernel.org> X-Mailer: git-send-email 2.14.4 Sender: dmaengine-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: dmaengine@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP We added MODULE_LICENSE but missed adding the header, so add it drivers/dma/fsl-edma-common.c:672:16: error: expected declaration specifiers or '...' before string constant MODULE_LICENSE("GPL v2"); ^~~~~~~~ Fixes: 7565699b2d21 ("dmaengine: fsl-edma-common: Add missing MODULE_LICENSE") Reported-by: Stephen Rothwell Signed-off-by: Vinod Koul --- drivers/dma/fsl-edma-common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/dma/fsl-edma-common.c b/drivers/dma/fsl-edma-common.c index fd4333995a0e..17e386911825 100644 --- a/drivers/dma/fsl-edma-common.c +++ b/drivers/dma/fsl-edma-common.c @@ -4,6 +4,7 @@ // Copyright (c) 2017 Sysam, Angelo Dureghello #include +#include #include #include "fsl-edma-common.h"