From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-ed1-f48.google.com (mail-ed1-f48.google.com [209.85.208.48]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 787B52918 for ; Sun, 1 May 2022 19:12:21 +0000 (UTC) Received: by mail-ed1-f48.google.com with SMTP id k27so14519297edk.4 for ; Sun, 01 May 2022 12:12:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=date:from:to:subject:message-id:mime-version:content-disposition; bh=bu36tlVzH2TzQVlLJMW7gM0JgO8yhlXPH5ve+Eml/9U=; b=hmYvXCw0SPn2D5pLbRsmDBrttlEMEi3SyjZe51wsnm3Gx8MYMhiq0mXwWzm4+9mXY5 cWqQnP5fFpsE+fKvZ2bL2OrS+6NOsIslMll7vPefhQc8W3UtB/AyboUDjm77WGTaqUvN I01c/VZNroCUv8/junbHfHmQWhBHQzJE/G4qzCxOWs9d8gWXSU9oi/6smvtLz3FNsbsw keoZa8LXjEIynemMVlpLVcg6vS9o8J/e1+tGowFv0PHHR6Obik3oK0Yif1H1kxKzyISn rYdBmleBKGSRjR6/+tWZuxDAIp9tcJKgMGRMiV4d6KLg4iEhx64cavEqS5kVa9iavVYb dwWA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-disposition; bh=bu36tlVzH2TzQVlLJMW7gM0JgO8yhlXPH5ve+Eml/9U=; b=W+W2wDivch0KL50pzo+FWEuHWEGluTcW3++RaK0FLgfOwuL/pwFLnNNou8oji0BqKa 1RFKVCNrPLtuCwGWtyOULLrpUhGyzcuU3bor5aRb+Yy5yryCGFdBnljQSm7WnktH1TBK ZP5JuUVUGmbdorNSE21JEErCfluzwjx+/2LSs+vWhKYQhg7gFJe1STuB49pQbifG/LHv Z4Xpk1xNFW+jki2ZMWVYNeGUkjxSk7gtmYr7BhhyhSfNfg3IB5mw3x2LvKrYTE1a+WFY xU/nqxoRYgdCiz2c0CzzUINDSs2+t1332ADFP4EIkCFrNmQXPGROqYqggyYZSkYf/3/a Y2TQ== X-Gm-Message-State: AOAM532z5J9dFWSDbF3yfL/otPrswiRJ9KPEKVst2uxc22JQ+q6IocAT bIXiZcb+gkdDApkpJ8KV3Ys= X-Google-Smtp-Source: ABdhPJxt2AONBLjn4RBEEiYGSXxfpWEW4Kqt75rIEjmMDyOyywhy6NhiYFtTaIGkYemOHbIkHxORlA== X-Received: by 2002:a05:6402:154:b0:423:dba8:c7fc with SMTP id s20-20020a056402015400b00423dba8c7fcmr10080821edu.346.1651432339643; Sun, 01 May 2022 12:12:19 -0700 (PDT) Received: from matrix-ESPRIMO-P710 (p54a074e9.dip0.t-ipconnect.de. [84.160.116.233]) by smtp.gmail.com with ESMTPSA id e16-20020a50fb90000000b0042617ba63d7sm5626288edq.97.2022.05.01.12.12.18 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 01 May 2022 12:12:19 -0700 (PDT) Date: Sun, 1 May 2022 21:12:17 +0200 From: Philipp Hortmann To: Forest Bond , Greg Kroah-Hartman , linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org, David Laight Subject: [PATCH v5 0/2] staging: vt6655: Replace macro VNSvInPortD with ioread32() Message-ID: Precedence: bulk X-Mailing-List: linux-staging@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Replace macro VNSvInPortD with ioread32. Avoid cast of the return value as much as possible. The name of macro and the arguments use CamelCase which is not accepted by checkpatch.pl Added missing big-endian support in CARDbGetCurrentTSF. Tested with vt6655 on mini PCI Module Transferred this patch over wlan connection of vt6655 V1 -> V2: Removed patch "staging: vt6655: Replace VNSvInPortW with ioread16" as it was already accepted. Joint patch "Replace two VNSvInPortD with ioread64_lo_hi" with patch "Replace VNSvInPortD with ioread32" and changed ioread64 to two ioread32 as ioread64 does not work with 32 Bit computers. Shorted and simplified patch descriptions. V2 -> V3: Added missing version in subject lines Added change history in cover letter Removed remark in cover letter "This patch series is new.." as it is obsolet. V3 -> V4: Added patch: "Added missing BE support in CARDbGetCurrentTSF" Removed testing example from cover letter and placed it to the patches. V4 -> V5: Corrected patch: "Added missing BE support in CARDbGetCurrentTSF" from #ifdef __BIG_ENDIAN to le64_to_cpu() Philipp Hortmann (2): staging: vt6655: Replace VNSvInPortD with ioread32 staging: vt6655: Added missing BE support in CARDbGetCurrentTSF drivers/staging/vt6655/card.c | 6 ++++-- drivers/staging/vt6655/device_main.c | 6 +++--- drivers/staging/vt6655/mac.h | 18 +++++++++--------- drivers/staging/vt6655/rf.c | 2 +- drivers/staging/vt6655/upc.h | 3 --- 5 files changed, 17 insertions(+), 18 deletions(-) -- 2.25.1