[PATCH] hid: Fix inconsistent indentation in hid_add_device()

From: SurajSonawane2415
Date: Fri Oct 04 2024 - 07:01:00 EST


Fix the indentation to ensure consistent code style and improve
readability, and to fix this warning:
drivers/hid/hid-core.c:2847 hid_add_device() warn: inconsistent indenting

Signed-off-by: SurajSonawane2415 <surajsonawane0215@xxxxxxxxx>
---
drivers/hid/hid-core.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c
index 612ee6ddf..8f08ca1ba 100644
--- a/drivers/hid/hid-core.c
+++ b/drivers/hid/hid-core.c
@@ -2844,10 +2844,10 @@ int hid_add_device(struct hid_device *hdev)
/*
* Check for the mandatory transport channel.
*/
- if (!hdev->ll_driver->raw_request) {
+ if (!hdev->ll_driver->raw_request) {
hid_err(hdev, "transport driver missing .raw_request()\n");
return -EINVAL;
- }
+ }

/*
* Read the device report descriptor once and use as template
--
2.34.1