From patchwork Tue Aug 9 00:15:38 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Stultz X-Patchwork-Id: 73498 Delivered-To: patches@linaro.org Received: by 10.140.29.52 with SMTP id a49csp221335qga; Mon, 8 Aug 2016 17:15:54 -0700 (PDT) X-Received: by 10.98.59.70 with SMTP id i67mr165837573pfa.45.1470701753805; Mon, 08 Aug 2016 17:15:53 -0700 (PDT) Return-Path: Received: from mail-pf0-x235.google.com (mail-pf0-x235.google.com. [2607:f8b0:400e:c00::235]) by mx.google.com with ESMTPS id m5si39480477pfm.117.2016.08.08.17.15.53 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 08 Aug 2016 17:15:53 -0700 (PDT) Received-SPF: pass (google.com: domain of john.stultz@linaro.org designates 2607:f8b0:400e:c00::235 as permitted sender) client-ip=2607:f8b0:400e:c00::235; Authentication-Results: mx.google.com; dkim=pass header.i=@linaro.org; spf=pass (google.com: domain of john.stultz@linaro.org designates 2607:f8b0:400e:c00::235 as permitted sender) smtp.mailfrom=john.stultz@linaro.org; dmarc=pass (p=NONE dis=NONE) header.from=linaro.org Received: by mail-pf0-x235.google.com with SMTP id p64so123993250pfb.1 for ; Mon, 08 Aug 2016 17:15:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=x3pwDDBR/ndECfNuwuIQGwnrN6LeFpe5ff2uwnJUcFs=; b=QWooMyMUauLAjweYCv4o/TNgybb5q4agQwDwD/Kblezz+A5c12yR5EWTY05eeMPJmS 1LJmlGeO30VMsBE8lPbApLTtIwxeqTffdSEq2MCnYieW4s05otGd9LTo2bQixeTYb2C4 +cso54Sn7+GKDwiO4Qu0yIf7c8bSgnI7qsN6k= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=x3pwDDBR/ndECfNuwuIQGwnrN6LeFpe5ff2uwnJUcFs=; b=h/vJ7BofjnJPY6AOQGViSmGNKWhZiaRIr4ZZqKR4NXt0Z5jomlnEfi8FNpi8pHhtLe vHWeOR/allnRoqrMJHIs90uvPvVxXxxEUlojG43NB82KO89v/TpIZfehlmvXJuDDSbxn 5mZgypbaasQUJUHtJ1R4MrgXLDsQza8WwKmoKJJKCNUErPH51DnYs2qSqltFZZpUUE87 PGG2Hjf332Yc5ZL97tEgEtcIKUrixFuhcMSXPaEhR7B8V4Dy5BrcGzH1QHpPpi6Ekjlv eQ4yZSlAf8HXPuY9av1gezuwF3ROQMql07rm8L1LAxo3/3PC7JbmnrRhnNLycdJ3IdEK K6Mg== X-Gm-Message-State: AEkoouvzQ26V9QExRABA1LHNAkFwOtvmJx/jxxcCDixtVpV5WLtP9KO9NVFcIaOko02C2gunv2M= X-Received: by 10.98.152.6 with SMTP id q6mr167256243pfd.86.1470701753536; Mon, 08 Aug 2016 17:15:53 -0700 (PDT) Return-Path: Received: from localhost.localdomain (c-73-67-244-238.hsd1.or.comcast.net. [73.67.244.238]) by smtp.gmail.com with ESMTPSA id k66sm46203140pfc.30.2016.08.08.17.15.52 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 08 Aug 2016 17:15:53 -0700 (PDT) From: John Stultz To: lkml Cc: John Stultz , Zhangfei Gao , Jingoo Han , Krzysztof Kozlowski , Maxime Ripard , Vinod Koul , Dan Williams , Mark Brown , Andy Green Subject: [PATCH 1/7] Kconfig: Allow k3dma driver to be selected for more then HISI3xx platforms Date: Mon, 8 Aug 2016 17:15:38 -0700 Message-Id: <1470701744-32742-2-git-send-email-john.stultz@linaro.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1470701744-32742-1-git-send-email-john.stultz@linaro.org> References: <1470701744-32742-1-git-send-email-john.stultz@linaro.org> This allows the k3dma driver to be selected on HiKey via the ARCH_HISI dependency. Cc: Zhangfei Gao Cc: Jingoo Han Cc: Krzysztof Kozlowski Cc: Maxime Ripard Cc: Vinod Koul Cc: Dan Williams Cc: Mark Brown Cc: Andy Green Signed-off-by: John Stultz --- v2: * Use ARCH_HISI and COMPILE_TEST dependency, suggested by Mark Brown, instead of just removing all dependencies. --- drivers/dma/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 1.9.1 diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig index 739f797..fe2dbb8 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig @@ -279,7 +279,7 @@ config INTEL_MIC_X100_DMA config K3_DMA tristate "Hisilicon K3 DMA support" - depends on ARCH_HI3xxx + depends on ARCH_HI3xxx || ARCH_HISI || COMPILE_TEST select DMA_ENGINE select DMA_VIRTUAL_CHANNELS help