From patchwork Tue Dec 9 10:46:23 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Szakmeister X-Patchwork-Id: 418999 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from arrakis.dune.hu (arrakis.dune.hu [78.24.191.176]) (using TLSv1.1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4A6411400DE for ; Tue, 9 Dec 2014 21:48:44 +1100 (AEDT) Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 5A01E28BEDE; Tue, 9 Dec 2014 11:46:52 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on arrakis.dune.hu X-Spam-Level: X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00,FREEMAIL_FROM, T_DKIM_INVALID autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id B28CB283E46 for ; Tue, 9 Dec 2014 11:46:43 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .gmail. - helo: .mail-qg0-f50.google. - helo-domain: .google.) FROM/MX_MATCHES_HELO(DOMAIN)=-2; rate: -8.5 Received: from mail-qg0-f50.google.com (mail-qg0-f50.google.com [209.85.192.50]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Tue, 9 Dec 2014 11:46:42 +0100 (CET) Received: by mail-qg0-f50.google.com with SMTP id i50so180794qgf.9 for ; Tue, 09 Dec 2014 02:48:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id; bh=ej0br+v3Z951Er8RgmzvZT+E2Z0G1sIEi8TqmAHvOqU=; b=L2c9ThD1A5MypBvYxoDlzyW3EwCw5NK4GZnp07P3H+mnenlR6N61no3lXzoO3WTqPh JAd8eQb6wkhNfa9A8/XRvtMhEPhHgUTNA7db5LZB+zG8oOwXXkLe44zB+vVQpr2vJFJY 8jdxow+jVFBjuMctz+2ul03yQ/L7Wu6T6ijyTP8MEXvJTteo447qCtoJvmmbEDBnxk79 MJE6pl4Qui38B7b/Pd4ztta7kE3hFUXf/tbzDH/955J+wSMFSYzvmCMkm8/HcChaQoEl sX5adrOHeff+YHsOx+K63RVmrhZRavXFvYFRRqiiL1Mvi8Dpaxg2iEbZsVvVvowmMS8c 9WBQ== X-Received: by 10.224.37.67 with SMTP id w3mr4065787qad.88.1418122104984; Tue, 09 Dec 2014 02:48:24 -0800 (PST) Received: from pangolin.intelesys.local (74-92-144-137-WashingtonDC.hfc.comcastbusiness.net. [74.92.144.137]) by mx.google.com with ESMTPSA id d7sm717157qar.27.2014.12.09.02.48.23 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 09 Dec 2014 02:48:23 -0800 (PST) From: John Szakmeister To: openwrt-devel@lists.openwrt.org Date: Tue, 9 Dec 2014 05:46:23 -0500 Message-Id: <1418121983-4966-1-git-send-email-john@szakmeister.net> X-Mailer: git-send-email 2.1.1 Subject: [OpenWrt-Devel] [PATCH][RESEND] [kernel] at91: add missing dependency to kmod-at91-adc X-BeenThere: openwrt-devel@lists.openwrt.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: OpenWrt Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" Signed-off-by: John Szakmeister --- target/linux/at91/modules.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/at91/modules.mk b/target/linux/at91/modules.mk index 4678b92..7f98233 100644 --- a/target/linux/at91/modules.mk +++ b/target/linux/at91/modules.mk @@ -38,7 +38,7 @@ $(eval $(call KernelPackage,pwm-atmel)) define KernelPackage/at91-adc SUBMENU:=$(OTHER_MENU) TITLE:=ADC on atmel SoC - DEPENDS:=@TARGET_at91 +kmod-iio-core + DEPENDS:=@TARGET_at91 +kmod-iio-core +kmod-input-core KCONFIG:=CONFIG_AT91_ADC FILES:=$(LINUX_DIR)/drivers/iio/adc/at91_adc.ko AUTOLOAD:=$(call AutoLoad,40,at91_adc)