[PATCH 0/1] staging: sm750fb: convert CamelCase function names to snake_case

khalid.datamax@gmail.com posted 1 patch 8 months, 2 weeks ago
There is a newer version of this series
[PATCH 0/1] staging: sm750fb: convert CamelCase function names to snake_case
Posted by khalid.datamax@gmail.com 8 months, 2 weeks ago
This patch cleans up the staging driver sm750fb by converting function names
that are currently in CamelCase to the preferred snake_case style, following
Linux kernel coding guidelines.

Specifically, it renames the following functions for consistency and readability:
- sii164GetDeviceID		-> sii164_get_device_id
- sii164ResetChip		-> sii164_reset_chip
- sii164GetChipString		-> sii164_get_chip_string
- sii164SetPower		-> sii164_set_power
- sii164EnableHotPlugDetection	-> sii164_enable_hot_plug_detection
- sii164IsConnected		-> sii164_is_connected
- sii164CheckInterrupt		-> sii164_check_interrupt
- sii164ClearInterrupt		-> sii164_clear_interrupt

This helps maintain uniformity with the rest of the kernel codebase and
improves maintainability.

Signed-off-by: Khalid Faisal <khalid.datamax@gmail.com>
[PATCH 0/1] staging: sm750fb: convert CamelCase function names to snake_case
Posted by khalid.datamax@gmail.com 8 months, 2 weeks ago
From: Khalid Faisal <khalid.datamax@gmail.com>

This patch updates various function names in the sm750fb driver to follow
the Linux kernel coding style by converting CamelCase names to snake_case.

These changes were identified using checkpatch.pl, which recommends
using snake_case for function and variable names.

This patch is part of the Kernel Janitors cleanup effort.

-- 
Khalid Faisal