Skip to content

Commit

Permalink
Staging: wavelan: fix initialise statics to 0 in wavelan_cs.p.h
Browse files Browse the repository at this point in the history
This is a patch  to the wavelan_cs.p.h fix initialise statics to 0
Errors found by the checkpatch.pl tools, like
	ERROR: do not initialise statics to 0 or NULL

Signed-off-by: Ruslan Pisarev <ruslan@rpisarev.org.ua>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Ruslan Pisarev authored and Greg Kroah-Hartman committed May 11, 2010
1 parent fb54967 commit 8eb3e22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/wavelan/wavelan_cs.p.h
Original file line number Diff line number Diff line change
Expand Up @@ -745,14 +745,14 @@ static void
*/

/* Shared memory speed, in ns */
static int mem_speed = 0;
static int mem_speed;

/* New module interface */
module_param(mem_speed, int, 0);

#ifdef WAVELAN_ROAMING /* Conditional compile, see above in options */
/* Enable roaming mode ? No ! Please keep this to 0 */
static int do_roaming = 0;
static int do_roaming;
module_param(do_roaming, bool, 0);
#endif /* WAVELAN_ROAMING */

Expand Down

0 comments on commit 8eb3e22

Please sign in to comment.