Skip to content

Commit

Permalink
[media] tm6000: don't initialize static var on tm6000-i2c.c
Browse files Browse the repository at this point in the history
This is a patch to the tm6000-i2c.c file that fixed "ERROR: do not
initialise statics to 0 or NULL" found by the checkpatch.pl tools.

Signed-off-by: Ruslan Pisarev <ruslan@rpisarev.org.ua>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Ruslan Pisarev authored and Mauro Carvalho Chehab committed Oct 21, 2010
1 parent 024fafb commit d7fe4a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/tm6000/tm6000-i2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

/* ----------------------------------------------------------- */

static unsigned int i2c_debug = 0;
static unsigned int i2c_debug;
module_param(i2c_debug, int, 0644);
MODULE_PARM_DESC(i2c_debug, "enable debug messages [i2c]");

Expand Down

0 comments on commit d7fe4a6

Please sign in to comment.