Message ID | cover.1617776878.git.pavle.rohalj@gmail.com |
---|---|
Headers | show |
Series | *** SUBJECT HERE *** | expand |
On Tue, Apr 06, 2021 at 11:35:54PM -0700, Pavle Rohalj wrote: > Changes in v2: > - Removed type information from variable names > - Broken up the changes into smaller patches Your subject is very odd :(
On Wed, Apr 07, 2021 at 10:32:53AM +0200, Greg KH wrote: > On Wed, Apr 07, 2021 at 09:32:29AM +0200, Greg KH wrote: > > On Wed, Apr 07, 2021 at 12:15:22AM -0700, Pavle Rohalj wrote: > > > On Wed, Apr 07, 2021 at 09:08:07AM +0200, Greg KH wrote: > > > > On Tue, Apr 06, 2021 at 11:35:54PM -0700, Pavle Rohalj wrote: > > > > > Changes in v2: > > > > > - Removed type information from variable names > > > > > - Broken up the changes into smaller patches > > > > > > > > Your subject is very odd :( > > > > > > Sorry about that, I overlooked the fact that I reran format-patch. The > > > subject should be: > > > > > > [PATCH] staging: sm750fb: Convert camel case to snake case > > > > > > Should I resubmit? > > > > Not yet, let me review these first, I think they might need some work... > > > > Ok, now you can fix them up, I stopped after reviewing patch 02/49, > these need some work. > > thanks, > > greg k-h Will do. Thank you. -Pavle
On Tue, Apr 06, 2021 at 11:36:21PM -0700, Pavle Rohalj wrote: > Fix "Avoid CamelCase" checkpatch.pl check for the function parameter > powerMode of function sm750_set_power_mode. > > Signed-off-by: Pavle Rohalj <pavle.rohalj@gmail.com> > --- > drivers/staging/sm750fb/ddk750_power.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/staging/sm750fb/ddk750_power.h b/drivers/staging/sm750fb/ddk750_power.h > index 4756db1ccb9c..d43942d6a5aa 100644 > --- a/drivers/staging/sm750fb/ddk750_power.h > +++ b/drivers/staging/sm750fb/ddk750_power.h > @@ -15,7 +15,7 @@ enum dpms { > } > > void ddk750_set_dpms(enum dpms state); > -void sm750_set_power_mode(unsigned int powerMode); > +void sm750_set_power_mode(unsigned int power_mode); This should just be "mode" to match the function. Anyway, I just realized now that I'm somehow reviewing ancient patches so I'm going to stop. regards, dan carpenter