diff options
author | Fabio Estevam <festevam@gmail.com> | 2021-03-02 15:28:17 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-03-10 14:13:19 +0100 |
commit | 5d90fef6809138f0d31271b06940950896671677 (patch) | |
tree | 30f017633e9b7a0e77080e716a507db5ee9d598f /sound/soc/codecs/sgtl5000.c | |
parent | ASoC: codec: Omit superfluous error message in jz4760_codec_probe() (diff) | |
download | linux-5d90fef6809138f0d31271b06940950896671677.tar.xz linux-5d90fef6809138f0d31271b06940950896671677.zip |
ASoC: sgtl5000: Fix identation of .driver elements
The .driver elements are not correctly idented.
Fix the identation of the .driver elements.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Link: https://lore.kernel.org/r/20210302142817.2141923-1-festevam@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/sgtl5000.c')
-rw-r--r-- | sound/soc/codecs/sgtl5000.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/codecs/sgtl5000.c b/sound/soc/codecs/sgtl5000.c index 6d9bb256a2cf..97bf1f222805 100644 --- a/sound/soc/codecs/sgtl5000.c +++ b/sound/soc/codecs/sgtl5000.c @@ -1819,9 +1819,9 @@ MODULE_DEVICE_TABLE(of, sgtl5000_dt_ids); static struct i2c_driver sgtl5000_i2c_driver = { .driver = { - .name = "sgtl5000", - .of_match_table = sgtl5000_dt_ids, - }, + .name = "sgtl5000", + .of_match_table = sgtl5000_dt_ids, + }, .probe = sgtl5000_i2c_probe, .remove = sgtl5000_i2c_remove, .id_table = sgtl5000_id, |