From patchwork Sun Apr 9 13:02:29 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Li Lanzhe X-Patchwork-Id: 13205982 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 62D3DC77B61 for ; Sun, 9 Apr 2023 13:04:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229579AbjDINEY (ORCPT ); Sun, 9 Apr 2023 09:04:24 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57204 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229462AbjDINEX (ORCPT ); Sun, 9 Apr 2023 09:04:23 -0400 Received: from hust.edu.cn (mail.hust.edu.cn [202.114.0.240]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EA98A3C25; Sun, 9 Apr 2023 06:04:21 -0700 (PDT) Received: from markli-virtual-machine.localdomain ([10.21.34.114]) (user=u202212060@hust.edu.cn mech=LOGIN bits=0) by mx1.hust.edu.cn with ESMTP id 339D2WpY016136-339D2WpZ016136 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 9 Apr 2023 21:02:47 +0800 From: Lanzhe Li To: Marcel Holtmann , Johan Hedberg , Luiz Augusto von Dentz , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni Cc: Lanzhe Li , linux-bluetooth@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] Bluetooth: fix inconsistent indenting Date: Sun, 9 Apr 2023 21:02:29 +0800 Message-Id: <20230409130229.2670-1-u202212060@hust.edu.cn> X-Mailer: git-send-email 2.37.2 MIME-Version: 1.0 X-FEAS-AUTH-USER: u202212060@hust.edu.cn Precedence: bulk List-ID: X-Mailing-List: linux-bluetooth@vger.kernel.org Fixed a wrong indentation before "return".This line uses a 7 space indent instead of a tab. Signed-off-by: Lanzhe Li --- net/bluetooth/hci_debugfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/bluetooth/hci_debugfs.c b/net/bluetooth/hci_debugfs.c index b7f682922a16..ec0df2f9188e 100644 --- a/net/bluetooth/hci_debugfs.c +++ b/net/bluetooth/hci_debugfs.c @@ -189,7 +189,7 @@ static int uuids_show(struct seq_file *f, void *p) } hci_dev_unlock(hdev); - return 0; + return 0; } DEFINE_SHOW_ATTRIBUTE(uuids);