[PATCH 0/2] Input: analog: fix coding style violations

From: Akash Sukhavasi

Date: Mon Apr 13 2026 - 18:23:09 EST


This patch series resolves 15 errors and addresses several warnings
reported by checkpatch.pl in the drivers/input/joystick/analog.c driver.
The original code contained multiple instances of trailing statements
on single-line conditionals, as well as minor indentation and spacing
issues that are in violation of kernel coding style.

This series breaks the cleanups into two logical parts:
1. Fixing trailing statements (moving them to their own lines).
2. Correcting indentation and parenthesis spacing.

Several warnings are intentionally left unaddressed, as they require
semantic or functional changes outside the scope of this formatting
cleanup:
- printk() to pr_warn()/pr_info() conversions
- simple_strtoul() to kstrtoul() conversion
- Filename strings embedded in printk() messages
- Quoted string split across lines
- Suspect indent on fail3 label

Tested with: scripts/checkpatch.pl --strict on the final patch.

Signed-off-by: Akash Sukhavasi <akash.sukhavasi@xxxxxxxxx>
---
Akash Sukhavasi (2):
Input: analog: Fix coding style - trailing statements on same line
Input: analog: Fix coding style - indentation and parenthesis spacing

drivers/input/joystick/analog.c | 49 +++++++++++++++++++++++----------
1 file changed, 34 insertions(+), 15 deletions(-)

--
2.53.0