commit | 225f597c60da646a6df1f7ac4152577a0c5fd56c | [log] [tgz] |
---|---|---|
author | Supriya Karanth <iskaranth@gmail.com> | Tue Mar 03 23:48:21 2015 +0900 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Fri Mar 06 09:54:33 2015 -0800 |
tree | 4e2aa486ce1aad9a3a1ae202e28f6c152105f0f8 | |
parent | 37e3be9de378d4775c617b0649ff89a6dc6bf07d [diff] |
staging: lustre: remove initialization of static ints static ints are initialized to 0 by the compiler. Explicit initialization is not necessary. Found by checkpatch.pl - ERROR: do not initialise statics to 0 or NULL changes made using coccinelle script: @@ type T; identifier var; @@ -static T var = 0; +static T var; Signed-off-by: Supriya Karanth <iskaranth@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>