From patchwork Wed Aug 4 16:09:48 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Kumar, M Chetan" X-Patchwork-Id: 492739 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=-11.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, USER_AGENT_GIT 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 6F122C4338F for ; Wed, 4 Aug 2021 16:13:12 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5864A60E78 for ; Wed, 4 Aug 2021 16:13:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232230AbhHDQNW (ORCPT ); Wed, 4 Aug 2021 12:13:22 -0400 Received: from mga12.intel.com ([192.55.52.136]:7118 "EHLO mga12.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232580AbhHDQNS (ORCPT ); Wed, 4 Aug 2021 12:13:18 -0400 X-IronPort-AV: E=McAfee;i="6200,9189,10066"; a="193547271" X-IronPort-AV: E=Sophos;i="5.84,294,1620716400"; d="scan'208";a="193547271" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Aug 2021 09:11:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.84,294,1620716400"; d="scan'208";a="569083133" Received: from ccgwwan-adlp1.iind.intel.com ([10.224.174.35]) by orsmga004.jf.intel.com with ESMTP; 04 Aug 2021 09:11:00 -0700 From: M Chetan Kumar To: netdev@vger.kernel.org Cc: kuba@kernel.org, davem@davemloft.net, johannes@sipsolutions.net, ryazanov.s.a@gmail.com, loic.poulain@linaro.org, krishna.c.sudi@intel.com, linuxwwan@intel.com Subject: [PATCH 0/4] net: wwan: iosm: fixes Date: Wed, 4 Aug 2021 21:39:48 +0530 Message-Id: <20210804160952.70254-1-m.chetan.kumar@linux.intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org This patch series contains IOSM Driver fixes. Below is the patch series breakdown. PATCH1: * Correct the td buffer type casting & format specifier to fix lkp buildbot warning. PATCH2: * Endianness type correction for nr_of_bytes. This field is exchanged as part of host-device protocol communication. PATCH3: * Correct ul/dl data protocol mask bit to know which protocol capability does device implement. PATCH4: * Calling unregister_netdevice() inside wwan del link is trying to acquire the held lock in ndo_stop_cb(). Instead, queue net dev to be unregistered later. --- M Chetan Kumar (4): net: wwan: iosm: fix lkp buildbot warning net: wwan: iosm: endianness type correction net: wwan: iosm: correct data protocol mask bit net: wwan: iosm: fix recursive lock acquire in unregister drivers/net/wwan/iosm/iosm_ipc_mmio.h | 4 ++-- drivers/net/wwan/iosm/iosm_ipc_mux_codec.c | 4 ++-- drivers/net/wwan/iosm/iosm_ipc_mux_codec.h | 2 +- drivers/net/wwan/iosm/iosm_ipc_protocol_ops.c | 4 ++-- drivers/net/wwan/iosm/iosm_ipc_wwan.c | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-)