From patchwork Thu Jan 31 12:34:00 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lee Jones X-Patchwork-Id: 14381 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 101A423E2E for ; Thu, 31 Jan 2013 12:34:19 +0000 (UTC) Received: from mail-ve0-f173.google.com (mail-ve0-f173.google.com [209.85.128.173]) by fiordland.canonical.com (Postfix) with ESMTP id 963DFA185BA for ; Thu, 31 Jan 2013 12:34:18 +0000 (UTC) Received: by mail-ve0-f173.google.com with SMTP id oz10so1951427veb.4 for ; Thu, 31 Jan 2013 04:34:18 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-forwarded-to:x-forwarded-for:delivered-to:x-received :received-spf:x-received:from:to:cc:subject:date:message-id:x-mailer :x-gm-message-state; bh=YFrIuh1pRwa8dw7FMTh1WI1zmoYWUVQCf9Ux/PyUi7c=; b=i7BGCYTy9Y5kxShs+3fAXWPWKGPKuBlvP9W4QzAG+i64Fb86LT9Vla2QjW9hDHjYwU G9E4pwrjtytVhO2xhSfPD5tAh98tkfQp2hShT2T9wHj9R4PM8oi51PDDALsIAKbleQvF OuAcqYy3Yh8OghAV68jwb60V5w3p8Y7bUvQiWRZkVI15TOBAMp2dxcgq6Hwg6LqiIsfD kCnIIPj0nYmZxCgYJPnqBMCSEcKEkorNbZBy76pZm0nA8qRBy7gJ8WVSNg8hOWeJ+pBP LjX6SNEX51AryavDq2qfiucaGZWHL0/g2tGmC2QRO7U6SPIzoW6rAODc1c2L2EHlb947 ADbQ== X-Received: by 10.52.27.50 with SMTP id q18mr7004820vdg.20.1359635658038; Thu, 31 Jan 2013 04:34:18 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.58.252.8 with SMTP id zo8csp61168vec; Thu, 31 Jan 2013 04:34:17 -0800 (PST) X-Received: by 10.180.97.197 with SMTP id ec5mr14350155wib.1.1359635656369; Thu, 31 Jan 2013 04:34:16 -0800 (PST) Received: from mail-we0-x22f.google.com ([2a00:1450:400c:c03::22f]) by mx.google.com with ESMTPS id m17si1595503wiw.103.2013.01.31.04.34.15 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 31 Jan 2013 04:34:16 -0800 (PST) Received-SPF: neutral (google.com: 2a00:1450:400c:c03::22f is neither permitted nor denied by best guess record for domain of lee.jones@linaro.org) client-ip=2a00:1450:400c:c03::22f; Authentication-Results: mx.google.com; spf=neutral (google.com: 2a00:1450:400c:c03::22f is neither permitted nor denied by best guess record for domain of lee.jones@linaro.org) smtp.mail=lee.jones@linaro.org Received: by mail-we0-f175.google.com with SMTP id x8so2052395wey.6 for ; Thu, 31 Jan 2013 04:34:15 -0800 (PST) X-Received: by 10.180.78.66 with SMTP id z2mr14833049wiw.23.1359635655563; Thu, 31 Jan 2013 04:34:15 -0800 (PST) Received: from localhost.localdomain (cpc34-aztw25-2-0-cust250.18-1.cable.virginmedia.com. [86.16.136.251]) by mx.google.com with ESMTPS id m6sm8990193wic.2.2013.01.31.04.34.13 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 31 Jan 2013 04:34:14 -0800 (PST) From: Lee Jones To: linux-kernel@vger.kernel.org Cc: Lee Jones , Mark Brown Subject: [PATCH 1/1] ASoC: Ux500: Fix build error pertaining to missing include file Date: Thu, 31 Jan 2013 12:34:00 +0000 Message-Id: <1359635640-1932-1-git-send-email-lee.jones@linaro.org> X-Mailer: git-send-email 1.7.9.5 X-Gm-Message-State: ALoCoQljZ5D1v5OhtptjXcdXZoKGYxIwpPPnoe6/I1bG1LMKd8NjG04aLYtZT25tiGNR57+dsqHM Some compilers complain when building sound for MOP500: sound/soc/ux500/mop500.c:27:27: fatal error: mop500_ab8500.h: No such file or directory That file is actually in the local directory rather than include. Cc: Mark Brown Signed-off-by: Lee Jones --- sound/soc/ux500/mop500.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/ux500/mop500.c b/sound/soc/ux500/mop500.c index ae69907..204b899 100644 --- a/sound/soc/ux500/mop500.c +++ b/sound/soc/ux500/mop500.c @@ -24,7 +24,7 @@ #include "ux500_pcm.h" #include "ux500_msp_dai.h" -#include +#include "mop500_ab8500.h" /* Define the whole MOP500 soundcard, linking platform to the codec-drivers */ struct snd_soc_dai_link mop500_dai_links[] = {