From patchwork Fri Oct 9 18:19:07 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stanislav Kholmanskikh X-Patchwork-Id: 7362991 X-Patchwork-Delegate: kvalo@adurom.com Return-Path: X-Original-To: patchwork-linux-wireless@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 35BC0BEEA4 for ; Fri, 9 Oct 2015 18:19:37 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 535D2207A8 for ; Fri, 9 Oct 2015 18:19:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7D6DF207AD for ; Fri, 9 Oct 2015 18:19:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754440AbbJISTW (ORCPT ); Fri, 9 Oct 2015 14:19:22 -0400 Received: from mail-lb0-f196.google.com ([209.85.217.196]:35223 "EHLO mail-lb0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751005AbbJISTV (ORCPT ); Fri, 9 Oct 2015 14:19:21 -0400 Received: by lbcao8 with SMTP id ao8so9482349lbc.2; Fri, 09 Oct 2015 11:19:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=Cuz0AcgZ/opPB2eYG32TzSiIg943b2Dmqf6w3lIUlqM=; b=Gvz3aMFOyGajhEd+BzRmlM8zYwS/EAYpTxRikeAs7ghXfMBsD5sbMY6WtWtaOgd7OD 0JH4g0UV/L8jXsXvHIcXON/kHV/Lf/ITkPKuHcsA+D8WhEZf8Jar4ZWFqZ8YvFBtiTLR neQlvRLtiXFocmirEI9kgWtNnM4xg6LVBtC5qQW+ZhgNnuhLT/6Pv0s4FJgVPho4Y8Gu tCM3wT8OaFGfEpli5+odr2uVstigcSCrylJqh9dSQYfO/H61CJONvC+2c2lxHZp/UnVB 3KQ9QN8FCgLNa7HrixbIwMp4Sfq7OttXg9VDjuVSXXMdxm0qcNEz4OVO8OatztjH7UPx RiIQ== X-Received: by 10.25.18.226 with SMTP id 95mr4719981lfs.96.1444414759884; Fri, 09 Oct 2015 11:19:19 -0700 (PDT) Received: from localhost.localdomain ([93.92.200.170]) by smtp.googlemail.com with ESMTPSA id v19sm498523lfd.7.2015.10.09.11.19.17 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 09 Oct 2015 11:19:18 -0700 (PDT) From: Stanislav Kholmanskikh To: johnny.kim@atmel.com, rachel.kim@atmel.com, chris.park@atmel.com, tony.cho@atmel.com, glen.lee@atmel.com, leo.kim@atmel.com, gregkh@linuxfoundation.org Cc: linux-wireless@vger.kernel.org, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, Stanislav Kholmanskikh Subject: [PATCH] staging: wilc1000: typo in WILC1000_DYNAMICALLY_ALLOCATE_MEMROY Date: Fri, 9 Oct 2015 21:19:07 +0300 Message-Id: <1444414747-8049-1-git-send-email-kholmanskikh.s.s@gmail.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <20151008184724.GA11027@kroah.com> References: <20151008184724.GA11027@kroah.com> Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Looking at the code, it seems that "MEMROY" in the config option name is a typo. It should be "MEMORY" instead. Changed the config option name accordingly. Signed-off-by: Stanislav Kholmanskikh --- drivers/staging/wilc1000/Kconfig | 2 +- drivers/staging/wilc1000/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/wilc1000/Kconfig b/drivers/staging/wilc1000/Kconfig index 59ccecc..d636f46 100644 --- a/drivers/staging/wilc1000/Kconfig +++ b/drivers/staging/wilc1000/Kconfig @@ -19,7 +19,7 @@ config WILC1000_PREALLOCATE_AT_LOADING_DRIVER during initial time. The driver will also free the buffer by calling network device stop. -config WILC1000_DYNAMICALLY_ALLOCATE_MEMROY +config WILC1000_DYNAMICALLY_ALLOCATE_MEMORY bool "Dynamically allocate memory in real time" ---help--- This choice supports dynamic allocation of the memory diff --git a/drivers/staging/wilc1000/Makefile b/drivers/staging/wilc1000/Makefile index f495061..026609a 100644 --- a/drivers/staging/wilc1000/Makefile +++ b/drivers/staging/wilc1000/Makefile @@ -15,7 +15,7 @@ ccflags-y += -I$(src)/ -D__CHECK_ENDIAN__ -DWILC_ASIC_A0 \ ccflags-$(CONFIG_WILC1000_PREALLOCATE_AT_LOADING_DRIVER) += -DMEMORY_STATIC \ -DWILC_PREALLOC_AT_INSMOD -ccflags-$(CONFIG_WILC1000_DYNAMICALLY_ALLOCATE_MEMROY) += -DWILC_NORMAL_ALLOC +ccflags-$(CONFIG_WILC1000_DYNAMICALLY_ALLOCATE_MEMORY) += -DWILC_NORMAL_ALLOC wilc1000-objs := wilc_wfi_cfgoperations.o linux_wlan.o linux_mon.o \