From mboxrd@z Thu Jan 1 00:00:00 1970 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=-19.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham 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 7F2CAC48BC2 for ; Fri, 25 Jun 2021 07:46:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 669FC6141C for ; Fri, 25 Jun 2021 07:46:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230241AbhFYHsl (ORCPT ); Fri, 25 Jun 2021 03:48:41 -0400 Received: from mail.kernel.org ([198.145.29.99]:40208 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229996AbhFYHsc (ORCPT ); Fri, 25 Jun 2021 03:48:32 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 43C896141B; Fri, 25 Jun 2021 07:46:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1624607172; bh=p+Rom+DO1ZkG3yGuITNLyUYvftbPq8zaTeZ9DWT6/ck=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=NHYH+FvNqIgbKTIkru1cLj2fM2IOPEzVblQbpi17mSjVbG6IZWp5oHsgQi7c4rwnS cJR83zdkNb1xuI6tj1q/nRdE0YSTgub5gpMI1aGdq+LlWfosOpZItCIX3wOEV4FX1Q nk69pj6hXKLlzBYXs+QdUxkpLFvnka7nP/8GG6UWjzxAvCk/xNDSSVosPCn7bMzPCU Z7qRiJDG/jjXRyzY3p5F+bVmrmhNjHrczu4wPLGPAgWxyvR8A4gkwD5o24gihyGXoT rLK9GvjHbWutB6AlGJgOGzpZXNyTJ+qwCtto8rlW8FletI67GKyyvwRrj1NgUHAS7a NuUD7anY2YOyw== Received: by mail.kernel.org with local (Exim 4.94.2) (envelope-from ) id 1lwgXS-004aeY-Hj; Fri, 25 Jun 2021 09:46:10 +0200 From: Mauro Carvalho Chehab To: Greg Kroah-Hartman Cc: linuxarm@huawei.com, mauro.chehab@huawei.com, Mauro Carvalho Chehab , "Lee Jones" , linux-kernel@vger.kernel.org, linux-staging@lists.linux.dev Subject: [PATCH v8 08/12] staging: hi6421-spmi-pmic: change identation of a table Date: Fri, 25 Jun 2021 09:46:00 +0200 Message-Id: X-Mailer: git-send-email 2.31.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Mauro Carvalho Chehab Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The struct regmap_config is idented with two tabs. Just one tab is enough. Suggested-by: Lee Jones Signed-off-by: Mauro Carvalho Chehab --- drivers/staging/hikey9xx/hi6421-spmi-pmic.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/hikey9xx/hi6421-spmi-pmic.c b/drivers/staging/hikey9xx/hi6421-spmi-pmic.c index 3f4bfeaaf05e..590c3c0e0b33 100644 --- a/drivers/staging/hikey9xx/hi6421-spmi-pmic.c +++ b/drivers/staging/hikey9xx/hi6421-spmi-pmic.c @@ -187,10 +187,10 @@ static void hi6421_spmi_pmic_irq_init(struct hi6421_spmi_pmic *ddata) } static const struct regmap_config regmap_config = { - .reg_bits = 16, - .val_bits = HISI_BITS, - .max_register = 0xffff, - .fast_io = true + .reg_bits = 16, + .val_bits = BITS_PER_BYTE, + .max_register = 0xffff, + .fast_io = true }; static int hi6421_spmi_pmic_probe(struct spmi_device *pdev) -- 2.31.1