From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.7 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 85AAAC4338F for ; Sun, 22 Aug 2021 20:44:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 654D36127B for ; Sun, 22 Aug 2021 20:44:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233325AbhHVUor (ORCPT ); Sun, 22 Aug 2021 16:44:47 -0400 Received: from mail-4322.protonmail.ch ([185.70.43.22]:36601 "EHLO mail-4322.protonmail.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233235AbhHVUoq (ORCPT ); Sun, 22 Aug 2021 16:44:46 -0400 Date: Sun, 22 Aug 2021 20:43:58 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bryanbrattlof.com; s=protonmail; t=1629665043; bh=CnGDwMCmb3wl+up2ny2MnsRvSz1XHCXVpk2rgvjWGyc=; h=Date:To:From:Cc:Reply-To:Subject:From; b=bnLkQRhqoWCQ+tlryHk2CEqVwMK02+yXP5FtC/US212FM0R6LxVGXPXV/G15+YhYc tlzuWoXUPVkKSVio3Gmv20dLR4ze1UIYsH82iuh390Sog79Ht89ZKvC6vtzgYCTs0r b2PytW3DWj0MCiMkMvcS8ut2EPfFKAgWQqoumC9tw7Rx1WaD1Ps450M9MkQ2wesoI+ IcrvrZga6VIIrCzu5Kr7lUnDVUzoUj+7qvw2vzZxzzCcs3U1ylKwhzDue/WJAKJ1IW 8i23LyuUXLQW+IU5CBJthQgAAD7i5IvE2/CuToZzwNh65wsCpznjfBRccnEYodKaKo hc3C8H4Z7oa6g== To: Greg Kroah-Hartman From: Bryan Brattlof Cc: "Fabio M. De Francesco" , linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org, Bryan Brattlof Reply-To: Bryan Brattlof Subject: [PATCH v2 5/5] staging: rtl8723bs: remove _read_port from _io_ops structure Message-ID: <20210822204212.2832397-6-hello@bryanbrattlof.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The function pointer, '_read_port' inside _io_ops is unused. We can remove it. Signed-off-by: Bryan Brattlof --- drivers/staging/rtl8723bs/hal/sdio_ops.c | 1 - drivers/staging/rtl8723bs/include/rtw_io.h | 1 - 2 files changed, 2 deletions(-) diff --git a/drivers/staging/rtl8723bs/hal/sdio_ops.c b/drivers/staging/rtl= 8723bs/hal/sdio_ops.c index 928fa109565e..768a4e553c77 100644 --- a/drivers/staging/rtl8723bs/hal/sdio_ops.c +++ b/drivers/staging/rtl8723bs/hal/sdio_ops.c @@ -355,7 +355,6 @@ void sdio_set_intf_ops(struct adapter *adapter, struct = _io_ops *ops) =09ops->_read8 =3D &sdio_read8; =09ops->_read16 =3D &sdio_read16; =09ops->_read32 =3D &sdio_read32; -=09ops->_read_port =3D &sdio_read_port; =09ops->_write8 =3D &sdio_write8; =09ops->_write16 =3D &sdio_write16; diff --git a/drivers/staging/rtl8723bs/include/rtw_io.h b/drivers/staging/r= tl8723bs/include/rtw_io.h index fa0cedadaa79..4e0a9f71ce1f 100644 --- a/drivers/staging/rtl8723bs/include/rtw_io.h +++ b/drivers/staging/rtl8723bs/include/rtw_io.h @@ -83,7 +83,6 @@ struct _io_ops { =09=09int (*_write16)(struct intf_hdl *pintfhdl, u32 addr, u16 val); =09=09int (*_write32)(struct intf_hdl *pintfhdl, u32 addr, u32 val); -=09=09u32 (*_read_port)(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 *= pmem); =09=09u32 (*_write_port)(struct intf_hdl *pintfhdl, u32 addr, u32 cnt, u8 = *pmem); }; -- 2.30.2