From patchwork Fri Mar 15 00:54:34 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Stultz X-Patchwork-Id: 15366 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 6069323E00 for ; Fri, 15 Mar 2013 00:54:49 +0000 (UTC) Received: from mail-ve0-f172.google.com (mail-ve0-f172.google.com [209.85.128.172]) by fiordland.canonical.com (Postfix) with ESMTP id 0EAA8A1873D for ; Fri, 15 Mar 2013 00:54:48 +0000 (UTC) Received: by mail-ve0-f172.google.com with SMTP id cz11so2267438veb.3 for ; Thu, 14 Mar 2013 17:54:48 -0700 (PDT) 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=LmdAcY+jmmQw6YmIvVE/0UevWSjP0uARz6LgignS8ns=; b=XGuFyXYSVCaETHILLnOs5AY97JTsKX0ajCPDzlx5a0K2zYw2PpUtQGr8JJg5AO+uKi CMfnQ+Dqc86QUY6SQUfixmX6W9U5gYCImgyVWloTFsgAQdKDGdhBYhP6bNAntoIsOx2l AA2TAlFAqR59Sp5Z1GtztSjRmhRxydiTOC6pyQa6HMoTdoPfqR/hpq1qGYMCP3w7G7Vi rk8M4Q1B9Y1zfnqc9FUbBFdW3iF8V1hDggWZRLM+c9QsJqjSw7zP2Yv8XaWlxsJa7GXo tPwLDq3taIiI1Of+P+Aei72JdSsbtYm9XGz/8gGJLP52ZoixbPRhSlHkMbwwbnhQO3QW 1Fdg== X-Received: by 10.52.29.18 with SMTP id f18mr3960339vdh.57.1363308888495; Thu, 14 Mar 2013 17:54:48 -0700 (PDT) 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.127.98 with SMTP id nf2csp98258veb; Thu, 14 Mar 2013 17:54:47 -0700 (PDT) X-Received: by 10.68.251.98 with SMTP id zj2mr10774375pbc.95.1363308887005; Thu, 14 Mar 2013 17:54:47 -0700 (PDT) Received: from mail-pb0-f45.google.com (mail-pb0-f45.google.com [209.85.160.45]) by mx.google.com with ESMTPS id yf1si7129390pbc.103.2013.03.14.17.54.46 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 14 Mar 2013 17:54:46 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.160.45 is neither permitted nor denied by best guess record for domain of john.stultz@linaro.org) client-ip=209.85.160.45; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.45 is neither permitted nor denied by best guess record for domain of john.stultz@linaro.org) smtp.mail=john.stultz@linaro.org Received: by mail-pb0-f45.google.com with SMTP id ro8so3034708pbb.4 for ; Thu, 14 Mar 2013 17:54:46 -0700 (PDT) X-Received: by 10.68.190.195 with SMTP id gs3mr11480480pbc.14.1363308886142; Thu, 14 Mar 2013 17:54:46 -0700 (PDT) Received: from localhost.localdomain (c-24-21-54-107.hsd1.or.comcast.net. [24.21.54.107]) by mx.google.com with ESMTPS id hs8sm5728203pbc.27.2013.03.14.17.54.44 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 14 Mar 2013 17:54:44 -0700 (PDT) From: John Stultz To: =?UTF-8?q?Arve=20Hj=C3=B8nnev=C3=A5g?= Cc: John Stultz , Rebecca Schultz Zavin , Android Kernel Team Subject: [PATCH] ion: Add Kconfig dependency to ARCH_ARM Date: Thu, 14 Mar 2013 17:54:34 -0700 Message-Id: <1363308874-21364-1-git-send-email-john.stultz@linaro.org> X-Mailer: git-send-email 1.7.10.4 X-Gm-Message-State: ALoCoQlHiCHAhw2ck1Jy71cLTiPHB/Yyz0kDTh6gGmEKSnpeeUAyW8hwGCI2KA2Cxbh14SrY0IPU The ion code has some very specific arm-isms which keeps it from building on other architectures. These should probably be resolved, but in the mean time, add a dependency on ARCH_ARM to avoid build failures. Cc: Rebecca Schultz Zavin Cc: Android Kernel Team Signed-off-by: John Stultz --- drivers/gpu/ion/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/ion/Kconfig b/drivers/gpu/ion/Kconfig index b5bfdb4..14bc1f1 100644 --- a/drivers/gpu/ion/Kconfig +++ b/drivers/gpu/ion/Kconfig @@ -1,5 +1,6 @@ menuconfig ION tristate "Ion Memory Manager" + depends on ARCH_ARM select GENERIC_ALLOCATOR select DMA_SHARED_BUFFER help