From patchwork Wed Feb 27 11:33:32 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jakub Wilk X-Patchwork-Id: 10831841 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id BB16D1399 for ; Wed, 27 Feb 2019 16:22:09 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A13922E663 for ; Wed, 27 Feb 2019 16:22:09 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 9F9932E740; Wed, 27 Feb 2019 16:22:09 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id EB3382E604 for ; Wed, 27 Feb 2019 16:22:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729617AbfB0QWH (ORCPT ); Wed, 27 Feb 2019 11:22:07 -0500 Received: from 1.mo7.mail-out.ovh.net ([178.33.45.51]:38305 "EHLO 1.mo7.mail-out.ovh.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726223AbfB0QWH (ORCPT ); Wed, 27 Feb 2019 11:22:07 -0500 X-Greylist: delayed 17308 seconds by postgrey-1.27 at vger.kernel.org; Wed, 27 Feb 2019 11:22:07 EST Received: from player750.ha.ovh.net (unknown [10.109.143.238]) by mo7.mail-out.ovh.net (Postfix) with ESMTP id A0E77103020 for ; Wed, 27 Feb 2019 12:33:36 +0100 (CET) Received: from jwilk.net (ip-5-172-255-33.free.aero2.net.pl [5.172.255.33]) (Authenticated sender: jwilk@jwilk.net) by player750.ha.ovh.net (Postfix) with ESMTPSA id CC26A33C8E6C; Wed, 27 Feb 2019 11:33:33 +0000 (UTC) From: Jakub Wilk To: linux-usb@vger.kernel.org Cc: Greg Kroah-Hartman Subject: [PATCH] usb: core: Fix typo in description of "authorized_default" Date: Wed, 27 Feb 2019 12:33:32 +0100 Message-Id: <20190227113332.6199-1-jwilk@jwilk.net> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 X-Ovh-Tracer-Id: 8471270903277737824 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: -100 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrgedutddrvddugdeftdcutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfqggfjpdevjffgvefmvefgnecuuegrihhlohhuthemucehtddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmd Sender: linux-usb-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Add missing right parenthesis. Signed-off-by: Jakub Wilk --- drivers/usb/core/hcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/core/hcd.c b/drivers/usb/core/hcd.c index 015b126ce455..c29ca6e8577c 100644 --- a/drivers/usb/core/hcd.c +++ b/drivers/usb/core/hcd.c @@ -379,7 +379,7 @@ module_param(authorized_default, int, S_IRUGO|S_IWUSR); MODULE_PARM_DESC(authorized_default, "Default USB device authorization: 0 is not authorized, 1 is " "authorized, -1 is authorized except for wireless USB (default, " - "old behaviour"); + "old behaviour)"); /*-------------------------------------------------------------------------*/ /**