diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-12-21 17:00:48 -0800 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2018-12-21 17:02:02 -0800 |
commit | d52266fc74beacf2aefad934bd4011d62e9584e0 (patch) | |
tree | d2707bd91146bfb8d4be658c72168e38a1f31311 | |
parent | 249d1bb22901a214f3e7265362057fba471b7204 (diff) | |
download | linux-stable-d52266fc74beacf2aefad934bd4011d62e9584e0.tar.gz linux-stable-d52266fc74beacf2aefad934bd4011d62e9584e0.tar.bz2 linux-stable-d52266fc74beacf2aefad934bd4011d62e9584e0.zip |
Input: drv2667 - fix indentation issues
There are some statements that are indented incorrectly, fix this by
removing the extra tabs.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r-- | drivers/input/misc/drv2667.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/misc/drv2667.c b/drivers/input/misc/drv2667.c index 2849bb6906a8..6091f0490e8f 100644 --- a/drivers/input/misc/drv2667.c +++ b/drivers/input/misc/drv2667.c @@ -177,9 +177,9 @@ static int drv2667_set_waveform_freq(struct drv2667_data *haptics) error = regmap_write(haptics->regmap, DRV2667_PAGE, read_buf); if (error) { dev_err(&haptics->client->dev, - "Failed to set the page: %d\n", error); - return -EIO; - } + "Failed to set the page: %d\n", error); + return -EIO; + } } return error; |