From patchwork Mon May 17 09:58:33 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juerg Haefliger X-Patchwork-Id: 441659 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=-16.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, URIBL_BLOCKED, 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 8B6D1C433B4 for ; Mon, 17 May 2021 09:59:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6DAA7611CA for ; Mon, 17 May 2021 09:59:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236467AbhEQKAT (ORCPT ); Mon, 17 May 2021 06:00:19 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:34577 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236360AbhEQJ7w (ORCPT ); Mon, 17 May 2021 05:59:52 -0400 Received: from mail-ed1-f70.google.com ([209.85.208.70]) by youngberry.canonical.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.93) (envelope-from ) id 1lia1D-0002S0-Gk for linux-usb@vger.kernel.org; Mon, 17 May 2021 09:58:35 +0000 Received: by mail-ed1-f70.google.com with SMTP id x1-20020a05640226c1b029038d31774e11so1762350edd.11 for ; Mon, 17 May 2021 02:58:35 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=S1hixJXRBnAuYfS34qwOSOa+37qwmbzyMLfpr9/CNNY=; b=mVqN9VF9L1Iw6rtljA2eAJySJGLpXhIdjzGpTkSsBmgz+kF7rumMsFrhJDDKrDEijL NTbgYaCTU4JKWjKGDIIOOl2HaGGp22sEMELhG7meGn9f7TddmTp1+FjXGlSB8xYySDzI H/UMkMl4mr8G3SjERCprkh5eZ6RmYOvXQr5XASobLUmV/ougBdqwPK5diWIjTh0wriZM kRVpLcErjlKcSRNqgfaaugqc5VTgVxEg4lm8mZWAJajsFaPKbL0Kb588YrVfq+6js2UX +wtr08GO4neBbX92m/aUyU0W4zezn4S+w+BOnk+fflkCTdGlnaBh6VSMu1j7X3InkkVj eXAA== X-Gm-Message-State: AOAM533ruU9mhLhgVM9c/pb1v0jagypXDrGVGYRss//QnKcqiAX5EXoe SXZOfIv3Z3SNXmK95ELOUgKTSBNDLph/Kf0+44HpKQy2OfCbsSszk7m5I04XXqJNOP6LJ49IKpW YY8K6FyNoFLIgJaC7Ar/+NRwZDfnK4XzNXp+yVg== X-Received: by 2002:a17:906:aac8:: with SMTP id kt8mr8323479ejb.402.1621245515281; Mon, 17 May 2021 02:58:35 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxihu71PQJinwnPLesofvKtoWr/e4cHWmOZUdXpwvJfKhflr8ymd0rE726XY/CayNammMGrFw== X-Received: by 2002:a17:906:aac8:: with SMTP id kt8mr8323465ejb.402.1621245515117; Mon, 17 May 2021 02:58:35 -0700 (PDT) Received: from gollum.fritz.box ([194.191.244.86]) by smtp.gmail.com with ESMTPSA id z7sm11245004edi.39.2021.05.17.02.58.34 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 17 May 2021 02:58:34 -0700 (PDT) From: Juerg Haefliger X-Google-Original-From: Juerg Haefliger To: davem@davemloft.net, kuba@kernel.org, linux-usb@vger.kernel.org, netdev@vger.kernel.org Cc: linux-kernel@vger.kernel.org, juergh@canonical.com Subject: [PATCH] drivers/net: Remove leading spaces in Kconfig Date: Mon, 17 May 2021 11:58:33 +0200 Message-Id: <20210517095833.81681-1-juergh@canonical.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org Remove leading spaces before tabs in Kconfig file(s) by running the following command: $ find drivers/net -name 'Kconfig*' | xargs sed -r -i 's/^[ ]+\t/\t/' Signed-off-by: Juerg Haefliger --- drivers/net/usb/Kconfig | 10 +++++----- drivers/net/wan/Kconfig | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/net/usb/Kconfig b/drivers/net/usb/Kconfig index fbbe78643631..179308782888 100644 --- a/drivers/net/usb/Kconfig +++ b/drivers/net/usb/Kconfig @@ -169,7 +169,7 @@ config USB_NET_AX8817X This option adds support for ASIX AX88xxx based USB 2.0 10/100 Ethernet adapters. - This driver should work with at least the following devices: + This driver should work with at least the following devices: * Aten UC210T * ASIX AX88172 * Billionton Systems, USB2AR @@ -220,13 +220,13 @@ config USB_NET_CDCETHER CDC Ethernet is an implementation option for DOCSIS cable modems that support USB connectivity, used for non-Microsoft USB hosts. The Linux-USB CDC Ethernet Gadget driver is an open implementation. - This driver should work with at least the following devices: + This driver should work with at least the following devices: * Dell Wireless 5530 HSPA - * Ericsson PipeRider (all variants) + * Ericsson PipeRider (all variants) * Ericsson Mobile Broadband Module (all variants) - * Motorola (DM100 and SB4100) - * Broadcom Cable Modem (reference design) + * Motorola (DM100 and SB4100) + * Broadcom Cable Modem (reference design) * Toshiba (PCX1100U and F3507g/F3607gw) * ... diff --git a/drivers/net/wan/Kconfig b/drivers/net/wan/Kconfig index 83c9481995dd..473df2505c8e 100644 --- a/drivers/net/wan/Kconfig +++ b/drivers/net/wan/Kconfig @@ -49,7 +49,7 @@ config COSA network device. You will need user-space utilities COSA or SRP boards for downloading - the firmware to the cards and to set them up. Look at the + the firmware to the cards and to set them up. Look at the for more information. You can also read the comment at the top of the for details about the cards and the driver itself. @@ -108,7 +108,7 @@ config HDLC Generic HDLC driver currently supports raw HDLC, Cisco HDLC, Frame Relay, synchronous Point-to-Point Protocol (PPP) and X.25. - To compile this driver as a module, choose M here: the + To compile this driver as a module, choose M here: the module will be called hdlc. If unsure, say N.