From patchwork Fri Jun 26 14:46:37 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luis de Bethencourt X-Patchwork-Id: 6681961 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 F0D42C05AC for ; Fri, 26 Jun 2015 14:40:36 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 22B4B2063B for ; Fri, 26 Jun 2015 14:40:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 433EF203FB for ; Fri, 26 Jun 2015 14:40:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753318AbbFZOke (ORCPT ); Fri, 26 Jun 2015 10:40:34 -0400 Received: from mail-wg0-f44.google.com ([74.125.82.44]:35227 "EHLO mail-wg0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753327AbbFZOkc (ORCPT ); Fri, 26 Jun 2015 10:40:32 -0400 Received: by wgjx7 with SMTP id x7so16963380wgj.2 for ; Fri, 26 Jun 2015 07:40:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:user-agent; bh=/qqrVr4/LofeXZXpnAncXCoh8YQn4rqLg9y+KXU/1cU=; b=icJuuHIY/VdopfDeqE0K+Ducw/Rrhyt+AjYobQHU/dExlMOJCLofzG04XCLcM43GOh r+UiY7xW81Kw2K/XADqzXIdytDTTlkruRj70BuS4WHtI1EjWSYc4YOvizb/7tgwqwOsq qCVOtMHpZFJyD0kGqg8vxFjCduLFGrCl5tU8GfGgZdw9DYdSyMqf28kUc7DkYkWjsE/u MEEREHPRvcNi8izSGej5NCfwsosLPe/Rf//6Opn1xosOLfNmsQXb+4TV1+HoDkxg4H58 jmiH8m/VWbaQApNL0CLSvAAZvntSxJCmbp6ibpVcc4Cnn5FtduicUcpYwmtAHgFykQiO OWMg== X-Received: by 10.180.73.10 with SMTP id h10mr5602147wiv.3.1435329631447; Fri, 26 Jun 2015 07:40:31 -0700 (PDT) Received: from localhost (goodgumbo.baconseed.org. [94.23.38.65]) by mx.google.com with ESMTPSA id js3sm50540627wjc.5.2015.06.26.07.40.30 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Fri, 26 Jun 2015 07:40:30 -0700 (PDT) Date: Fri, 26 Jun 2015 16:46:37 +0200 From: Luis de Bethencourt To: linux-kernel@vger.kernel.orgr Cc: Johnny Kim , Rachel Kim , Dean Lee , Chris Park , Greg Kroah-Hartman , linux-wireless@vger.kernel.org, devel@driverdev.osuosl.org Subject: [PATCH 4/4] staging: wilc1000: fix typos in PRINT_ERR() Message-ID: <20150626144634.GA30097@goodgumbo.baconseed.org> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Spam-Status: No, score=-8.2 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,T_DKIM_INVALID,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 Fix typo "packe" to "packet". Signed-off-by: Luis de Bethencourt --- drivers/staging/wilc1000/host_interface.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 79b7c2a..1915fc6 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -3688,7 +3688,7 @@ static void Handle_DelAllSta(void *drvHandler, tstrHostIFDelAllSta *pstrDelAllSt s32Error = SendConfigPkt(SET_CFG, &strWID, 1, true, (u32)pstrWFIDrv); if (s32Error) { - PRINT_ER("Failed to send add station config packe\n"); + PRINT_ER("Failed to send add station config packet\n"); WILC_ERRORREPORT(s32Error, WILC_FAIL); } @@ -3735,7 +3735,7 @@ static void Handle_DelStation(void *drvHandler, tstrHostIFDelSta *pstrDelStaPara s32Error = SendConfigPkt(SET_CFG, &strWID, 1, false, (u32)pstrWFIDrv); if (s32Error) { - PRINT_ER("Failed to send add station config packe\n"); + PRINT_ER("Failed to send add station config packet\n"); WILC_ERRORREPORT(s32Error, WILC_FAIL); }