diff options
author | Valery Ivanov <ivalery111@gmail.com> | 2019-11-08 14:23:29 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-11-11 16:37:58 +0100 |
commit | 1fa489b14dbc4968284711874ed35566fcdf712b (patch) | |
tree | 89c010eab70da4d853138045592ea984b8e8b416 /drivers/staging/octeon | |
parent | 5cd382b2693358be99b9ae1c524854f5715b5dc2 (diff) |
staging: octeon: fix missing a blank line after declaration
This patch fixes "WARNING: Missing a blank line after declarations"
Issue found by checkpatch.pl
Signed-off-by: Valery Ivanov <ivalery111@gmail.com>
Link: https://lore.kernel.org/r/20191108142329.GA3192@hwsrv-485799.hostwindsdns.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/octeon')
-rw-r--r-- | drivers/staging/octeon/octeon-stubs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/octeon/octeon-stubs.h b/drivers/staging/octeon/octeon-stubs.h index d53bd801f440..ed9d44ff148b 100644 --- a/drivers/staging/octeon/octeon-stubs.h +++ b/drivers/staging/octeon/octeon-stubs.h @@ -1375,6 +1375,7 @@ static inline union cvmx_gmxx_rxx_rx_inbnd cvmx_spi4000_check_speed( int port) { union cvmx_gmxx_rxx_rx_inbnd r; + r.u64 = 0; return r; } |