aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2020-09-20 15:17:16 +0100
committerJiri Kosina <jkosina@suse.cz>2020-09-22 11:19:55 +0200
commit2c3468893779480f90b4a7a8e3df0ade0c4b7a75 (patch)
tree11126a55d30665a2e3bc7e488dcfd3dba43ec2c9
parentHID: ite: Add USB id match for Acer One S1003 keyboard dock (diff)
downloadlinux-dev-2c3468893779480f90b4a7a8e3df0ade0c4b7a75.tar.xz
linux-dev-2c3468893779480f90b4a7a8e3df0ade0c4b7a75.zip
HID: alps: clean up indentation issue
There is an if statement that is indented too deeply, fix this by removing the extraneous tab. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r--drivers/hid/hid-alps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-alps.c b/drivers/hid/hid-alps.c
index a9c2de95c5e2..3feaece13ade 100644
--- a/drivers/hid/hid-alps.c
+++ b/drivers/hid/hid-alps.c
@@ -526,7 +526,7 @@ static int u1_init(struct hid_device *hdev, struct alps_dev *pri_data)
ret = u1_read_write_register(hdev, ADDRESS_U1_NUM_SENS_Y,
&sen_line_num_y, 0, true);
- if (ret < 0) {
+ if (ret < 0) {
dev_err(&hdev->dev, "failed U1_NUM_SENS_Y (%d)\n", ret);
goto exit;
}