From patchwork Tue Apr 19 01:14:20 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Solomon Tan X-Patchwork-Id: 563950 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id AD759C433F5 for ; Tue, 19 Apr 2022 01:14:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241673AbiDSBRP (ORCPT ); Mon, 18 Apr 2022 21:17:15 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55244 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S243655AbiDSBRN (ORCPT ); Mon, 18 Apr 2022 21:17:13 -0400 Received: from mail-0201.mail-europe.com (mail-0201.mail-europe.com [51.77.79.158]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C92E32FE6D for ; Mon, 18 Apr 2022 18:14:32 -0700 (PDT) Date: Tue, 19 Apr 2022 01:14:20 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.ch; s=protonmail2; t=1650330868; bh=9M5szPGT7SceYEUfth8beJqIX9oNjhtVwa7dIqIdi9E=; h=Date:To:From:Cc:Reply-To:Subject:Message-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID; b=YSQXp0kUaTaeJN5KLZqsZB8o99aXiy3DHtxRyV6dhFbpnxp3WQHhOzTCsmIisK06B CAloTr9zJVIgX/57XPf1d1Gpoyt5IJvDyXb3rnxcSfuxRUbfKOVGQjOYQdA4/RaW1P ta+QcFJhtA7Xy4jls7ipPK5J8BhnN71mFtIKQ5Pq9AUUgr4kUzG1vlMOrGmqaFTge5 ZvHTJK4afdTWiL9/9BLE2+8M0nACMjsjqFllnLy0RdV5bkxvd1G8bf0lSG4CFKaxoC dQXQ1hKGVzUYEl4KUgeRa998qahqvlt1VlK5QTrjj3X5jhhBFLrs4Z7s3X+KVwwOCm 72X5kQgdlmNkw== To: linux-wireless@vger.kernel.org From: Solomon Tan Cc: linux-kernel@vger.kernel.org, netdev@vger.kernel.org, rdunlap@infradead.org, gregkh@linuxfoundation.org, miriam.rachel.korenblit@intel.com, johannes.berg@intel.com, pabeni@redhat.com, kuba@kernel.org, davem@davemloft.net, kvalo@kernel.org, luciano.coelho@intel.com, Solomon Tan Reply-To: Solomon Tan Subject: [PATCH 0/3] iwlwifi: Address whitespace coding style errors Message-ID: <20220419011340.14954-1-solomonbstoner@protonmail.ch> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org This series of three patches addresses the whitespace coding style errors marked by checkpatch.pl as an "ERROR". In order of sequence, the following edits are made: 1. Removal of prohibited spaces 2. Addition of required space 3. Replacement of space with tabs as code indent. Signed-off-by: Solomon Tan