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: 12261449 X-Patchwork-Delegate: kuba@kernel.org 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=unavailable 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 8DE0DC43460 for ; Mon, 17 May 2021 09:59:08 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 72E3E61005 for ; Mon, 17 May 2021 09:59:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236305AbhEQKAX (ORCPT ); Mon, 17 May 2021 06:00:23 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:34580 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236362AbhEQJ7w (ORCPT ); Mon, 17 May 2021 05:59:52 -0400 Received: from mail-ed1-f71.google.com ([209.85.208.71]) by youngberry.canonical.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.93) (envelope-from ) id 1lia1D-0002S2-IP for netdev@vger.kernel.org; Mon, 17 May 2021 09:58:35 +0000 Received: by mail-ed1-f71.google.com with SMTP id h16-20020a0564020950b029038cbdae8cbaso3592091edz.6 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=tcQj+SFZggXgjtH9JWUw48G2PwSL8r496tnjC/S+UqToTpi8/nUfjtGeWofR4GRB5P Mc23YWeDdTFPxmMhdSTclgkS1UNThgaxsy6VSz9fmcDo0PRoNE/c+DsK9HgAV7oH3pku 8eN/hyJu1/Zsdy7sEvdzXtzWmvfZabK3q795Y+4qm876dWNnO2S8EM/iRCIb+Q3HQyke E5s4DFKFQZfVNOqPyYJki+mqdrVDkkkHfQknmczGWUI3CDjhvKOZcMteAxbWUhQlHUb2 YR3sXh5N49+g53ENN8LLpGdmstn08YvdkBJPHkI6XAVmm+JxD5Bhi6AAIBKcfDYv8wju MMRw== X-Gm-Message-State: AOAM530W8xolBh8BPhlqMepTb6H0qpfAZ5B/LvFMV7F/KJlebV4aOjha ScfrlKb4fNr7ukm/fIDq6gU7xLatrBGg1ZF08Bz/Tpr4cX7CP1Ujv9x2QVvwKlVYlvtOEmHh2ud 65v0eIgoVH7Ls0zPPE8aAOwJroa7XHgCNsw== X-Received: by 2002:a17:906:aac8:: with SMTP id kt8mr8323480ejb.402.1621245515282; 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: netdev@vger.kernel.org X-Patchwork-Delegate: kuba@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.