diff options
author | Gargi Sharma <gs051095@gmail.com> | 2016-09-12 21:12:07 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-13 15:01:29 +0200 |
commit | c371ffa79c4ca29b8cd7da4d30157179162130c8 (patch) | |
tree | 4c6488e3c90685eadb5a9505c337dc0ad3295ff6 | |
parent | staging: most: core: constify structure member (diff) | |
download | linux-c371ffa79c4ca29b8cd7da4d30157179162130c8.tar.xz linux-c371ffa79c4ca29b8cd7da4d30157179162130c8.zip |
staging: slicoss: add new line after struct declaration
checkpatch generates a warning for no blank line after struct
declaration. Inserted a new line.
Signed-off-by: Gargi Sharma <gs051095@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/slicoss/slic.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/slicoss/slic.h b/drivers/staging/slicoss/slic.h index fe1d2cee65b7..6d2853906219 100644 --- a/drivers/staging/slicoss/slic.h +++ b/drivers/staging/slicoss/slic.h @@ -92,6 +92,7 @@ struct slic_rcvbuf_info { u32 lasttime; u32 lastid; }; + /* * SLIC Handle structure. Used to restrict handle values to * 32 bits by using an index rather than an address. |