regulator: max77802-regulator: fix indentation in if statement

There are several lines in an if statement that are not indented
correctly. Fix these by removing the tabs.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Colin Ian King 2019-02-12 13:46:16 +00:00 коммит произвёл Mark Brown
Родитель 7932a88052
Коммит c79fba835c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 24D68B725D5487D0
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -248,9 +248,9 @@ static int max77802_set_ramp_delay_2bit(struct regulator_dev *rdev,
unsigned int ramp_value; unsigned int ramp_value;
if (id > MAX77802_BUCK4) { if (id > MAX77802_BUCK4) {
dev_warn(&rdev->dev, dev_warn(&rdev->dev,
"%s: regulator: ramp delay not supported\n", "%s: regulator: ramp delay not supported\n",
rdev->desc->name); rdev->desc->name);
return -EINVAL; return -EINVAL;
} }
ramp_value = max77802_find_ramp_value(rdev, ramp_table_77802_2bit, ramp_value = max77802_find_ramp_value(rdev, ramp_table_77802_2bit,