From patchwork Wed Nov 4 14:37:24 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ulrich Weber X-Patchwork-Id: 539991 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.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 372C1140FF1 for ; Thu, 5 Nov 2015 02:27:06 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=gKVoc98n; dkim-atps=neutral Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id EEE8E280351; Wed, 4 Nov 2015 16:25:11 +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 82C9F2800A4 for ; Wed, 4 Nov 2015 16:25:07 +0100 (CET) X-policyd-weight: using cached result; rate:hard: -8.5 Received: from mail-wi0-f175.google.com (mail-wi0-f175.google.com [209.85.212.175]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Wed, 4 Nov 2015 16:25:07 +0100 (CET) Received: by wikq8 with SMTP id q8so94477384wik.1 for ; Wed, 04 Nov 2015 07:26:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:from:date:subject:to; bh=dBZGS6Wbn746bHSbgn2U9XGZwlu4u2NyhTpdb9lub0A=; b=gKVoc98nWfQAkWgiTbZwJtomBYIcSh0ETT6uFpHEUzwWUBs9t5+52qReMGomGay1eK fQhGNmwrn+t8HFnAe3IHOBWNSDRuq0Uv4cLCIiGn2DN9dND8+D1kfJxGCLDf/0vmMU/q pmpjnSqTKkfdn0RumpxjhlmWTPctfna2OF5ab+6lhsCOjJZ8SrDex0ZOaIlCyPxsEOTZ E9s4ABLur44yN8CQFN1jjPvZ8H7IdCCBaTzzSsXgX90Lmn7k7Zo/04RPbe7f1VhM/Icj ja6ATNf4E/zWBs9w5K1f/ZX27oVz9hdsoeqzfb2YbBFmtCGSOWWMPpPPY1AY/mq7wcak Jpzg== X-Received: by 10.194.8.38 with SMTP id o6mr2711764wja.42.1446650815897; Wed, 04 Nov 2015 07:26:55 -0800 (PST) Received: from localhost ([5.158.136.57]) by smtp.gmail.com with ESMTPSA id kd8sm2102894wjc.27.2015.11.04.07.26.55 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 04 Nov 2015 07:26:55 -0800 (PST) Message-ID: <563a23bf.e8c9c20a.9b243.ffff9fa3@mx.google.com> From: Ulrich Weber X-Google-Original-From: Ulrich Weber Date: Wed, 4 Nov 2015 15:37:24 +0100 To: openwrt-devel@lists.openwrt.org Subject: [OpenWrt-Devel] [PATCH] kernel: omap_wdt module load typo 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" autoload should be without .ko module extension Signed-off-by: Ulrich Weber --- package/kernel/linux/modules/other.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/kernel/linux/modules/other.mk b/package/kernel/linux/modules/other.mk index 022410f..5a975ed 100644 --- a/package/kernel/linux/modules/other.mk +++ b/package/kernel/linux/modules/other.mk @@ -476,7 +476,7 @@ define KernelPackage/wdt-omap DEPENDS:=@(TARGET_omap24xx||TARGET_omap35xx) KCONFIG:=CONFIG_OMAP_WATCHDOG FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/omap_wdt.ko - AUTOLOAD:=$(call AutoLoad,50,omap_wdt.ko,1) + AUTOLOAD:=$(call AutoLoad,50,omap_wdt,1) endef define KernelPackage/wdt-omap/description