diff options
author | Luiz Sampaio <sampaio.ime@gmail.com> | 2021-11-10 01:07:31 +0300 |
---|---|---|
committer | Miguel Ojeda <ojeda@kernel.org> | 2021-11-24 13:46:42 +0300 |
commit | 94047df12fec0e51e860b5317223f67a3ea4eb07 (patch) | |
tree | 3331a2204e376f92b9eb571959e58ad9f973ffe1 /drivers/auxdisplay | |
parent | 136057256686de39cc3a07c2e39ef6bc43003ff6 (diff) | |
download | linux-94047df12fec0e51e860b5317223f67a3ea4eb07.tar.xz |
auxdisplay: charlcd: fixing coding style issue
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>
Diffstat (limited to 'drivers/auxdisplay')
-rw-r--r-- | drivers/auxdisplay/charlcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/auxdisplay/charlcd.c b/drivers/auxdisplay/charlcd.c index 304accde365c..cca3b600c0ba 100644 --- a/drivers/auxdisplay/charlcd.c +++ b/drivers/auxdisplay/charlcd.c @@ -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 { |