power: supply: gpio-charger: Clean up spacing for better readability
authorDarshan R. <rathod.darshan.0896@gmail.com>
Wed, 23 Jul 2025 07:06:59 +0000 (07:06 +0000)
committerSebastian Reichel <sebastian.reichel@collabora.com>
Sat, 6 Sep 2025 20:49:07 +0000 (22:49 +0200)
commit980927603c4b4fa499771bf36f445808d6859a61
treeefc2008d63e9d9cc4d7ae83f47720b7e89a5d28e
parent8c5795fe55278fa6a656bf4a0398fb22d5079298
power: supply: gpio-charger: Clean up spacing for better readability

Fixed some minor style issues reported by checkpatch.pl. Mainly adjusted the
spacing around operators and type casts to match the kernel coding
conventions. For example:

- Changed `gpios[ndescs-i-1]` to `gpios[ndescs - i - 1]`
- Added space in `(u32*)` to make it `(u32 *)`
- Cleaned up spacing in a `for` loop

No functional changes — just making the code easier to read and consistent
with the rest of the kernel.

Signed-off-by: Darshan R. <rathod.darshan.0896@gmail.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/power/supply/gpio-charger.c