diff options
author | Dhaval Shah <dhaval.shah@softnautics.com> | 2017-12-08 08:56:54 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-12-18 18:00:57 +0300 |
commit | 67d0833f050d2554fd652b745ea76934fe308a6a (patch) | |
tree | cc614103ff86d9552145caf76b55b8ef6ec38e69 | |
parent | 97784615ed32c1ef33047e95d4240141258e2cf0 (diff) | |
download | linux-67d0833f050d2554fd652b745ea76934fe308a6a.tar.xz |
misc: ics932s401: Missing a blank line after declarations
Resolved all the missing a blank line after declarations checkpatch
warnings. Issue found by checkpatch.
Signed-off-by: Dhaval Shah <dhaval.shah@softnautics.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/misc/ics932s401.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/misc/ics932s401.c b/drivers/misc/ics932s401.c index 28f51e01fd2b..d22e2dc62907 100644 --- a/drivers/misc/ics932s401.c +++ b/drivers/misc/ics932s401.c @@ -225,6 +225,7 @@ static ssize_t show_cpu_clock_sel(struct device *dev, else { /* Freq is neatly wrapped up for us */ int fid = data->regs[ICS932S401_REG_CFG7] & ICS932S401_FS_MASK; + freq = fs_speeds[fid]; if (data->regs[ICS932S401_REG_CTRL] & ICS932S401_CPU_ALT) { switch (freq) { |