[0/6] staging: media: atomisp: Fix various small code and code style formatting issues

Message ID 20240226194023.69070-1-bergh.jonathan@gmail.com
Headers
Series staging: media: atomisp: Fix various small code and code style formatting issues |

Message

Jonathan Bergh Feb. 26, 2024, 7:40 p.m. UTC
  These patches address a number of small code and code style formatting
including:
 * removing unneeded braces from single line statements
 * replace "unsigned *" with "unsigned int *"
 * remove spurious whitespace and ensure trailing statements are included 
   on a newline following a conditional statement
 * remove unneeded parentheses from conditional statement
 * remove unneeded "return" statement from void function, and finally
 * remove commented code and fix multiple block comments to meet the kernel
   code style guidelines.

Jonathan Bergh (6):
  staging: media: atomisp: Remove unnecessary braces from single line
    conditional statements
  staging: media: atomisp: Fixed "unsigned int *" rather than "unsigned
    *" declaration in variable declaration
  staging: media: atomisp: Ensure trailing statements are on a newline
    and remove spurious whitespaces
  staging: media: atomisp: Remove unnecessary parentheses from
    conditional statement
  staging: media: atomisp: Remove unneeded return statement from void
    function
  staging: media: atomisp: Remove old commented code and fix multiple
    block comment style

 drivers/staging/media/atomisp/pci/sh_css_sp.c | 109 +++++++++---------
 1 file changed, 57 insertions(+), 52 deletions(-)