From patchwork Tue Jun 16 19:00:44 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simao Gomes Viana X-Patchwork-Id: 11608483 X-Patchwork-Delegate: jikos@jikos.cz Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id AE51C13B6 for ; Tue, 16 Jun 2020 19:06:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 8C744214DB for ; Tue, 16 Jun 2020 19:06:50 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=superboring.dev header.i=@superboring.dev header.b="YTn4YjzQ" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730020AbgFPTGt (ORCPT ); Tue, 16 Jun 2020 15:06:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49310 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729988AbgFPTGt (ORCPT ); Tue, 16 Jun 2020 15:06:49 -0400 X-Greylist: delayed 340 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Tue, 16 Jun 2020 12:06:48 PDT Received: from mail.halogenos.org (halogenos.org [IPv6:2a02:c207:2037:5246::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id DC53FC061573 for ; Tue, 16 Jun 2020 12:06:48 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 1976B1500CE2; Tue, 16 Jun 2020 21:01:14 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=superboring.dev; s=dkim; t=1592334074; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ePTtzVzTZk1JuadsO9tbd8TX4Uadz1o3NB+qLTLvi2g=; b=YTn4YjzQ14gM7DOneiK5PWsqbJc92Zv1zRYkmp+ZzpzBjC6BHmtSPF9rDzbOgOmHgCK29C gyVLOrKZLqsr/dRQ34lRQ2hkyCBJURUor9yEH2gmI3eRgE0mKHGPMaW3+QVT+JYfeAEy88 D8QRZ+r3Q0756oDXdVZc58O19ygsp55+arva8hdn4p3xC5ZdYJji9v3YWJCzpxQVQFnAYE rwRywQ++RVsroMddWQi4HkTb5WmjDMnvGtdzzQ8fo1wrkkqhXY8DgA/9yoJNdmaUymGrzQ Qt+S5LqFsuR3J6JNpG3hvy5djplss1/vvdV8gHCDILZCnXnJhmvNMv8xf8EZXw== From: Simao Gomes Viana To: Jiri Kosina Cc: Simao Gomes Viana , linux-input@vger.kernel.org Subject: [PATCH 4/4] drivers: hid: move trailing block comment close to new line Date: Tue, 16 Jun 2020 21:00:44 +0200 Message-Id: <20200616190044.126928-4-devel@superboring.dev> In-Reply-To: <20200616190044.126928-1-devel@superboring.dev> References: <20200616190044.126928-1-devel@superboring.dev> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org Signed-off-by: Simao Gomes Viana --- drivers/hid/hid-input.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/hid/hid-input.c b/drivers/hid/hid-input.c index ef077da7485d..c0a329fd8067 100644 --- a/drivers/hid/hid-input.c +++ b/drivers/hid/hid-input.c @@ -2016,7 +2016,8 @@ void hidinput_disconnect(struct hid_device *hid) /* led_work is spawned by input_dev callbacks, but doesn't access the * parent input_dev at all. Once all input devices are removed, we * know that led_work will never get restarted, so we can cancel it - * synchronously and are safe. */ + * synchronously and are safe. + */ cancel_work_sync(&hid->led_work); } EXPORT_SYMBOL_GPL(hidinput_disconnect);