diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-06-25 09:46:00 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-06-25 10:02:26 +0200 |
commit | 5ff96c9672c52aa90749b786ef81c50a7a680713 (patch) | |
tree | f816a72c45e4104143ebb7c24f35a4ea5bc5aff8 /drivers/staging/hikey9xx/hi6421-spmi-pmic.c | |
parent | 0fb8de638c76d7387bb7d76bf7e491392b72a651 (diff) | |
download | linux-5ff96c9672c52aa90749b786ef81c50a7a680713.tar.gz linux-5ff96c9672c52aa90749b786ef81c50a7a680713.tar.bz2 linux-5ff96c9672c52aa90749b786ef81c50a7a680713.zip |
staging: hi6421-spmi-pmic: change identation of a table
The struct regmap_config is idented with two tabs.
Just one tab is enough.
Suggested-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Link: https://lore.kernel.org/r/a4d718b0479e3867bedc93861e4b2c9c1321aabd.1624606660.git.mchehab+huawei@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/hikey9xx/hi6421-spmi-pmic.c')
-rw-r--r-- | drivers/staging/hikey9xx/hi6421-spmi-pmic.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/hikey9xx/hi6421-spmi-pmic.c b/drivers/staging/hikey9xx/hi6421-spmi-pmic.c index c7d431daa406..9c36af4a6a72 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) |