From patchwork Sun Nov 19 18:57:17 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 45515 Received: from vger.kernel.org ([209.132.180.67]) by www.linuxtv.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eGUme-0004S3-KP; Sun, 19 Nov 2017 18:57:37 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751027AbdKSS5V (ORCPT + 1 other); Sun, 19 Nov 2017 13:57:21 -0500 Received: from xavier.telenet-ops.be ([195.130.132.52]:34902 "EHLO xavier.telenet-ops.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750952AbdKSS5V (ORCPT ); Sun, 19 Nov 2017 13:57:21 -0500 Received: from ayla.of.borg ([84.195.106.246]) by xavier.telenet-ops.be with bizsmtp id buxK1w00C5JzmfG01uxKFQ; Sun, 19 Nov 2017 19:57:19 +0100 Received: from ramsan.of.borg ([192.168.97.29] helo=ramsan) by ayla.of.borg with esmtp (Exim 4.86_2) (envelope-from ) id 1eGUmM-0001Zw-VO; Sun, 19 Nov 2017 19:57:18 +0100 Received: from geert by ramsan with local (Exim 4.86_2) (envelope-from ) id 1eGUmM-0006UC-OK; Sun, 19 Nov 2017 19:57:18 +0100 From: Geert Uytterhoeven To: Peter Griffin , Patrice Chotard , Mauro Carvalho Chehab Cc: linux-media@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] [media] c8sectpfe: DVB_C8SECTPFE should depend on HAS_DMA Date: Sun, 19 Nov 2017 19:57:17 +0100 Message-Id: <1511117837-24894-1-git-send-email-geert@linux-m68k.org> X-Mailer: git-send-email 2.7.4 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org If NO_DMA=y: ERROR: "bad_dma_ops" [drivers/media/platform/sti/c8sectpfe/c8sectpfe.ko] undefined! Add a dependency on HAS_DMA to fix this. Signed-off-by: Geert Uytterhoeven --- drivers/media/platform/sti/c8sectpfe/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/platform/sti/c8sectpfe/Kconfig b/drivers/media/platform/sti/c8sectpfe/Kconfig index 7420a50572d347ef..740190f8a3b606d3 100644 --- a/drivers/media/platform/sti/c8sectpfe/Kconfig +++ b/drivers/media/platform/sti/c8sectpfe/Kconfig @@ -1,6 +1,6 @@ config DVB_C8SECTPFE tristate "STMicroelectronics C8SECTPFE DVB support" - depends on PINCTRL && DVB_CORE && I2C + depends on PINCTRL && DVB_CORE && I2C && HAS_DMA depends on ARCH_STI || ARCH_MULTIPLATFORM || COMPILE_TEST select FW_LOADER select DEBUG_FS