From patchwork Sat Apr 8 16:45:42 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Li Lanzhe X-Patchwork-Id: 671955 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 BA080C7619A for ; Sat, 8 Apr 2023 16:47:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229481AbjDHQrx (ORCPT ); Sat, 8 Apr 2023 12:47:53 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50738 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229448AbjDHQrv (ORCPT ); Sat, 8 Apr 2023 12:47:51 -0400 Received: from hust.edu.cn (unknown [202.114.0.240]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8CC7630E0; Sat, 8 Apr 2023 09:47:49 -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 338Gjk9D026876-338Gjk9E026876 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 9 Apr 2023 00:46:00 +0800 From: Lanzhe Li To: Marcel Holtmann , Johan Hedberg , Luiz Augusto von Dentz , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni Cc: markli , linux-bluetooth@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] net: bluetooth: hci_debugfs: fix inconsistent indenting Date: Sun, 9 Apr 2023 00:45:42 +0800 Message-Id: <20230408164542.2316-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 From: markli Fixed a wrong indentation before "return".This line uses a 7 space indent instead of a tab. Signed-off-by: Lanzhe Li Reviewed-by: Simon Horman --- 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);