From patchwork Tue Jun 9 12:46:00 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 214921 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=-9.8 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU, HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH, MAILING_LIST_MULTI, SIGNED_OFF_BY,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 86675C433E1 for ; Tue, 9 Jun 2020 12:47:37 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4F6AD20853 for ; Tue, 9 Jun 2020 12:47:37 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="aZGKXShJ" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729615AbgFIMqk (ORCPT ); Tue, 9 Jun 2020 08:46:40 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50884 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729580AbgFIMqe (ORCPT ); Tue, 9 Jun 2020 08:46:34 -0400 Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 85AB7C05BD1E; Tue, 9 Jun 2020 05:46:33 -0700 (PDT) Received: from Q.local (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id E2A9F18DB; Tue, 9 Jun 2020 14:46:31 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1591706792; bh=4//tYS7h1eeHKXDB8pvKQKTZW/4D6PifWzVG1mI1mXw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=aZGKXShJKzKrdfWUePwrRQYjx3qGsI8ynhIjEY0lbZf1fh7WYu8GBw4+D2dvJe00Y qYWE4K2PUqCzneNsa+CoHYd70+tG3bSPdAbZWWLjNgwb0d+qk7NpdMAm3oq0I4srcn yYR07JNKvCTHnilbUsrH1xZuMMT3gVF+fxZ8ZoYA= From: Kieran Bingham To: Kieran Bingham Cc: linux-renesas-soc@vger.kernel.org, Kieran Bingham , Greg Kroah-Hartman , Jiri Kosina , linux-usb@vger.kernel.org (open list:USB SUBSYSTEM), linux-kernel@vger.kernel.org (open list) Subject: [PATCH 07/17] drivers: usb: Fix trivial spelling Date: Tue, 9 Jun 2020 13:46:00 +0100 Message-Id: <20200609124610.3445662-8-kieran.bingham+renesas@ideasonboard.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200609124610.3445662-1-kieran.bingham+renesas@ideasonboard.com> References: <20200609124610.3445662-1-kieran.bingham+renesas@ideasonboard.com> MIME-Version: 1.0 Sender: linux-usb-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org The word 'descriptor' is misspelled throughout the tree. Fix it up accordingly: decriptors -> descriptors Signed-off-by: Kieran Bingham --- drivers/usb/core/of.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/core/of.c b/drivers/usb/core/of.c index 651708d8c908..617e92569b2c 100644 --- a/drivers/usb/core/of.c +++ b/drivers/usb/core/of.c @@ -45,7 +45,7 @@ EXPORT_SYMBOL_GPL(usb_of_get_device_node); * * Determine whether a USB device has a so called combined node which is * shared with its sole interface. This is the case if and only if the device - * has a node and its decriptors report the following: + * has a node and its descriptors report the following: * * 1) bDeviceClass is 0 or 9, and * 2) bNumConfigurations is 1, and