From patchwork Mon Aug 13 19:59:10 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joachim Eastwood X-Patchwork-Id: 1314981 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id A9493DF25A for ; Mon, 13 Aug 2012 20:02:56 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1T10nj-0000bv-7d; Mon, 13 Aug 2012 19:59:47 +0000 Received: from mail-lpp01m010-f49.google.com ([209.85.215.49]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1T10nf-0000bh-UG for linux-arm-kernel@lists.infradead.org; Mon, 13 Aug 2012 19:59:45 +0000 Received: by lagu2 with SMTP id u2so2079200lag.36 for ; Mon, 13 Aug 2012 12:59:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer; bh=8baeATMgAzgFhG/3oJfek9WZFv4x0harjGmPq9rpusw=; b=Oiz96GoNFDSh6vM6Urqhum/i34c5sNLJ35DPffy2ShMrrG5OlABRjcigbm0vddaQ0O ce0E2u7zbU8ePRwT2/X5WAKMrjG2mzMRIOyHIbrkmHzIgEKj/01yXoxoBfZYZaCeBGbd mleRmMt6Y0yGNQ8fU8WNzhiXd7IzCGREpgeKFwDIC8KtPS7RLNT2CYaPQQQoWPYSp+hM n+M+PBmxJDNURiLtbD1qVF9Ry77oq09RpC2lm/8m4EKCIpKAqkazHpkUubyChu+mXBCG 8dsmKgj2jOOu228ZOtBMYAIUFCLOdLhmNkFvz2LXM3sOlaJ5ruGZdDHku84YtiELnB2M crmg== Received: by 10.112.39.135 with SMTP id p7mr6875173lbk.78.1344887981304; Mon, 13 Aug 2012 12:59:41 -0700 (PDT) Received: from localhost.localdomain ([90.149.223.90]) by mx.google.com with ESMTPS id sm7sm354290lab.5.2012.08.13.12.59.40 (version=SSLv3 cipher=OTHER); Mon, 13 Aug 2012 12:59:40 -0700 (PDT) From: Joachim Eastwood To: nicolas.ferre@atmel.com Subject: [PATCH] atmel-ssc: include linux/io.h for raw io Date: Mon, 13 Aug 2012 21:59:10 +0200 Message-Id: <1344887950-25596-1-git-send-email-joachim.eastwood@jotron.com> X-Mailer: git-send-email 1.7.11 X-Spam-Note: CRM114 invocation failed X-Spam-Score: -2.7 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.7 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (manabian[at]gmail.com) -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.215.49 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: Joachim Eastwood , linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org Include linux/io.h for raw io operations in atmel-scc header. This fixes the following build error: CC [M] sound/soc/atmel/atmel_ssc_dai.o sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_interrupt': sound/soc/atmel/atmel_ssc_dai.c:171: error: implicit declaration of function '__raw_readl' sound/soc/atmel/atmel_ssc_dai.c: In function 'atmel_ssc_shutdown': sound/soc/atmel/atmel_ssc_dai.c:249: error: implicit declaration of function '__raw_writel' Signed-off-by: Joachim Eastwood --- include/linux/atmel-ssc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/atmel-ssc.h b/include/linux/atmel-ssc.h index 0602339..4eb3175 100644 --- a/include/linux/atmel-ssc.h +++ b/include/linux/atmel-ssc.h @@ -3,6 +3,7 @@ #include #include +#include struct ssc_device { struct list_head list;