From patchwork Mon Aug 10 02:33:21 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chaehyun Lim X-Patchwork-Id: 6979181 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 F2751C05AC for ; Mon, 10 Aug 2015 02:34:06 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 2437420748 for ; Mon, 10 Aug 2015 02:34:06 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 31F9020734 for ; Mon, 10 Aug 2015 02:34:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752727AbbHJCeB (ORCPT ); Sun, 9 Aug 2015 22:34:01 -0400 Received: from mail-pd0-f174.google.com ([209.85.192.174]:34038 "EHLO mail-pd0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752637AbbHJCd5 (ORCPT ); Sun, 9 Aug 2015 22:33:57 -0400 Received: by pdbfa8 with SMTP id fa8so25734332pdb.1 for ; Sun, 09 Aug 2015 19:33:57 -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=+bJKeuDl3vJyq4lXW8qN+6Rups7GZFZgghwm///4a6o=; b=Jft4wx6iCKY2JCHp6dsyqJRq9F3q8/ByTvqlo+wsZIyXarG7TBXoNqL88+a7U6zdkp /hxjPbAVZGau2BNUmKVsno3+vwAHNMUQQn4RPbLYgUvo49yuYZLgeWKQ3cwHoLuJGrXw FYHCdcgzc9Qeu2Hon0abBFmEJyEiPunru9skMo11pZ1xljKNebD9r7BegERf9zGLCcGR +Qt/EzREaROTQfNPGlu5Br2l1mzMC0S1fp9ZCBkyzkjGbD4A/XNPEzdVPSV1nkFolG+9 UnAQBi82uLUvrsC5OPG+RylS9Wp4Lo9nM7p2H7sC0LUyRfK3Vspp0nnfkUk5hi2AIXPR sNXg== X-Received: by 10.70.53.225 with SMTP id e1mr40591019pdp.23.1439174037347; Sun, 09 Aug 2015 19:33:57 -0700 (PDT) Received: from localhost.localdomain ([218.233.16.2]) by smtp.gmail.com with ESMTPSA id k10sm17650088pbq.63.2015.08.09.19.33.54 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 09 Aug 2015 19:33:56 -0700 (PDT) From: Chaehyun Lim To: gregkh@linuxfoundation.org Cc: johnny.kim@atmel.com, rachel.kim@atmel.com, dean.lee@atmel.com, chris.park@atmel.com, linux-wireless@vger.kernel.org, devel@driverdev.osuosl.org, Chaehyun Lim Subject: [PATCH 10/11] staging: wilc1000: remove WILC_memcpy_INTERNAL Date: Mon, 10 Aug 2015 11:33:21 +0900 Message-Id: <1439174002-7365-10-git-send-email-chaehyun.lim@gmail.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1439174002-7365-1-git-send-email-chaehyun.lim@gmail.com> References: <1439174002-7365-1-git-send-email-chaehyun.lim@gmail.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, 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 Remove WILC_memcpy_INTERNAL that is used in the WILC_memcpy because WILC_memcpy is replaced by memcpy. Signed-off-by: Chaehyun Lim --- drivers/staging/wilc1000/wilc_strutils.c | 9 --------- drivers/staging/wilc1000/wilc_strutils.h | 11 ----------- 2 files changed, 20 deletions(-) diff --git a/drivers/staging/wilc1000/wilc_strutils.c b/drivers/staging/wilc1000/wilc_strutils.c index cc4e9fe..ebc8668 100644 --- a/drivers/staging/wilc1000/wilc_strutils.c +++ b/drivers/staging/wilc1000/wilc_strutils.c @@ -6,15 +6,6 @@ -/*! - * @author syounan - * @date 18 Aug 2010 - * @version 1.0 - */ -void WILC_memcpy_INTERNAL(void *pvTarget, const void *pvSource, u32 u32Count) -{ - memcpy(pvTarget, pvSource, u32Count); -} diff --git a/drivers/staging/wilc1000/wilc_strutils.h b/drivers/staging/wilc1000/wilc_strutils.h index dbca73d..bb7b61d 100644 --- a/drivers/staging/wilc1000/wilc_strutils.h +++ b/drivers/staging/wilc1000/wilc_strutils.h @@ -15,17 +15,6 @@ #include "wilc_errorsupport.h" -/*! - * @brief Internal implementation for memory copy - * @param[in] pvTarget the target buffer to which the data is copied into - * @param[in] pvSource pointer to the second memory location - * @param[in] u32Count the size of the data to copy - * @note this function should not be used directly, use WILC_memcpy instead - * @author syounan - * @date 18 Aug 2010 - * @version 1.0 - */ -void WILC_memcpy_INTERNAL(void *pvTarget, const void *pvSource, u32 u32Count);