1. 13 Jun, 2013 28 commits
  2. 12 Jun, 2013 6 commits
  3. 09 Jun, 2013 6 commits
    • Mauro Carvalho Chehab's avatar
      [media] drxk_hard: Remove most 80-cols checkpatch warnings · ab5060cd
      Mauro Carvalho Chehab authored
      X-Patchwork-Delegate: mchehab@redhat.com
      There are a few cases where breaking the code into separate
      lines make it worse to read. However, on several places,
      breaking it to make checkpatch.pl happier is OK and improves
      code readability.
      So, break longer lines where that won't cause harm.
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
      ab5060cd
    • Mauro Carvalho Chehab's avatar
      [media] drxk_hard: remove needless parenthesis · 949dd08d
      Mauro Carvalho Chehab authored
      X-Patchwork-Delegate: mchehab@redhat.com
      There are several places where: state->var = (some_var)
      The parenthesis there are doing nothing but making it
      harder to read and breaking the 80 columns soft limits.
      Just get rid of it.
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
      949dd08d
    • Mauro Carvalho Chehab's avatar
      [media] drxk_hard.h: don't use more than 80 columns · d5687ab5
      Mauro Carvalho Chehab authored
      X-Patchwork-Delegate: mchehab@redhat.com
      Almost all 80-col warnings are related to comments. There's
      one, however, that it is due to a one-line enum declaration
      for enum agc_ctrl_mode.
      Break it into one line per enumered data.
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
      d5687ab5
    • Mauro Carvalho Chehab's avatar
      [media] drxk_hard.h: Remove some alien comment markups · 57b8b003
      Mauro Carvalho Chehab authored
      X-Patchwork-Delegate: mchehab@redhat.com
      The comments markup language used on Kernel is defined at:
      	Documentation/kernel-doc-nano-HOWTO.txt
      Remove invalid markups from the header file.
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
      57b8b003
    • Mauro Carvalho Chehab's avatar
      [media] drxk_hard: use usleep_range() · b72852ba
      Mauro Carvalho Chehab authored
      X-Patchwork-Delegate: mchehab@redhat.com
      Fixes the following checkpatch.pl warnings:
      WARNING: msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt
      +			msleep(10);
      WARNING: msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt
      +		msleep(1);
      WARNING: msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt
      +			msleep(1);
      WARNING: msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt
      +		msleep(1);
      WARNING: msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt
      +		msleep(1);
      WARNING: msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt
      +		msleep(1);
      WARNING: msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt
      +		msleep(1);
      WARNING: msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt
      +		msleep(1);
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
      b72852ba
    • Mauro Carvalho Chehab's avatar
      [media] drxk_hard: don't split strings across lines · 0fb220f2
      Mauro Carvalho Chehab authored
      X-Patchwork-Delegate: mchehab@redhat.com
      WARNING: quoted string split across lines
      	#5416: FILE: media/dvb-frontends/drxk_hard.c:5416:
      	+		dprintk(1, "Could not set demodulator parameters. Make "
      	+			"sure qam_demod_parameter_count (%d) is correct for "
      	WARNING: quoted string split across lines
      	#5423: FILE: media/dvb-frontends/drxk_hard.c:5423:
      	+		dprintk(1, "Auto-probing the correct QAM demodulator command "
      	+			"parameters was successful - using %d parameters.\n",
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
      0fb220f2