Skip to content

Commit

Permalink
auxdisplay: charlcd: fixing coding style issue
Browse files Browse the repository at this point in the history
Removing 'int' from 'unsigned long int' declaration, which is unnecessary.

Signed-off-by: Luiz Sampaio <sampaio.ime@gmail.com>
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
  • Loading branch information
Luiz Sampaio authored and Miguel Ojeda committed Nov 24, 2021
1 parent 1360572 commit 94047df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/auxdisplay/charlcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ struct charlcd_priv {
bool must_clear;

/* contains the LCD config state */
unsigned long int flags;
unsigned long flags;

/* Current escape sequence and it's length or -1 if outside */
struct {
Expand Down

0 comments on commit 94047df

Please sign in to comment.