Re: [PATCH] staging/media/rtl2832u_sdr: fix coding style problems by adding blank lines

2014-06-02 Thread Ovidiu Toader
On 06/02/14 03:21, Dan Carpenter wrote:
 Send the patch inline, not as an attachment.
 
 Read the first paragraph.
 https://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/tree/Documentation/email-clients.txt
 
 The subject should say something about adding blank lines.
Thanks for the feedback and sorry for the inconvenience.
Take 2:

This minor patch fixes all WARNING:SPACING style warnings in rtl2832_sdr.c

The new version of the file pleases checkpatch.pl when run with --ignore 
LONG_LINE.

Signed-off-by: Ovidiu Toader o...@phas.ubc.ca
---
 drivers/staging/media/rtl2832u_sdr/rtl2832_sdr.c | 20 
 1 file changed, 20 insertions(+)

diff --git a/drivers/staging/media/rtl2832u_sdr/rtl2832_sdr.c 
b/drivers/staging/media/rtl2832u_sdr/rtl2832_sdr.c
index 093df6b..3b80637 100644
--- a/drivers/staging/media/rtl2832u_sdr/rtl2832_sdr.c
+++ b/drivers/staging/media/rtl2832u_sdr/rtl2832_sdr.c
@@ -348,6 +348,7 @@ static unsigned int rtl2832_sdr_convert_stream(struct 
rtl2832_sdr_state *s,
/* convert u8 to u16 */
unsigned int i;
u16 *u16dst = dst;
+
for (i = 0; i  src_len; i++)
*u16dst++ = (src[i]  8) | (src[i]  0);
dst_len = 2 * src_len;
@@ -359,6 +360,7 @@ static unsigned int rtl2832_sdr_convert_stream(struct 
rtl2832_sdr_state *s,
if (unlikely(time_is_before_jiffies(s-jiffies_next))) {
 #define MSECS 1UL
unsigned int samples = s-sample - s-sample_measured;
+
s-jiffies_next = jiffies + msecs_to_jiffies(MSECS);
s-sample_measured = s-sample;
dev_dbg(s-udev-dev,
@@ -560,11 +562,13 @@ static int rtl2832_sdr_alloc_urbs(struct 
rtl2832_sdr_state *s)
 static void rtl2832_sdr_cleanup_queued_bufs(struct rtl2832_sdr_state *s)
 {
unsigned long flags = 0;
+
dev_dbg(s-udev-dev, %s:\n, __func__);
 
spin_lock_irqsave(s-queued_bufs_lock, flags);
while (!list_empty(s-queued_bufs)) {
struct rtl2832_sdr_frame_buf *buf;
+
buf = list_entry(s-queued_bufs.next,
struct rtl2832_sdr_frame_buf, list);
list_del(buf-list);
@@ -577,6 +581,7 @@ static void rtl2832_sdr_cleanup_queued_bufs(struct 
rtl2832_sdr_state *s)
 static void rtl2832_sdr_release_sec(struct dvb_frontend *fe)
 {
struct rtl2832_sdr_state *s = fe-sec_priv;
+
dev_dbg(s-udev-dev, %s:\n, __func__);
 
mutex_lock(s-vb_queue_lock);
@@ -598,6 +603,7 @@ static int rtl2832_sdr_querycap(struct file *file, void *fh,
struct v4l2_capability *cap)
 {
struct rtl2832_sdr_state *s = video_drvdata(file);
+
dev_dbg(s-udev-dev, %s:\n, __func__);
 
strlcpy(cap-driver, KBUILD_MODNAME, sizeof(cap-driver));
@@ -615,6 +621,7 @@ static int rtl2832_sdr_queue_setup(struct vb2_queue *vq,
unsigned int *nplanes, unsigned int sizes[], void *alloc_ctxs[])
 {
struct rtl2832_sdr_state *s = vb2_get_drv_priv(vq);
+
dev_dbg(s-udev-dev, %s: *nbuffers=%d\n, __func__, *nbuffers);
 
/* Need at least 8 buffers */
@@ -665,6 +672,7 @@ static int rtl2832_sdr_set_adc(struct rtl2832_sdr_state *s)
u8 buf[4], u8tmp1, u8tmp2;
u64 u64tmp;
u32 u32tmp;
+
dev_dbg(s-udev-dev, %s: f_adc=%u\n, __func__, s-f_adc);
 
if (!test_bit(POWER_ON, s-flags))
@@ -987,6 +995,7 @@ static int rtl2832_sdr_start_streaming(struct vb2_queue 
*vq, unsigned int count)
 {
struct rtl2832_sdr_state *s = vb2_get_drv_priv(vq);
int ret;
+
dev_dbg(s-udev-dev, %s:\n, __func__);
 
if (!s-udev)
@@ -1035,6 +1044,7 @@ err:
 static void rtl2832_sdr_stop_streaming(struct vb2_queue *vq)
 {
struct rtl2832_sdr_state *s = vb2_get_drv_priv(vq);
+
dev_dbg(s-udev-dev, %s:\n, __func__);
 
mutex_lock(s-v4l2_lock);
@@ -1068,6 +1078,7 @@ static int rtl2832_sdr_g_tuner(struct file *file, void 
*priv,
struct v4l2_tuner *v)
 {
struct rtl2832_sdr_state *s = video_drvdata(file);
+
dev_dbg(s-udev-dev, %s: index=%d type=%d\n,
__func__, v-index, v-type);
 
@@ -1094,6 +1105,7 @@ static int rtl2832_sdr_s_tuner(struct file *file, void 
*priv,
const struct v4l2_tuner *v)
 {
struct rtl2832_sdr_state *s = video_drvdata(file);
+
dev_dbg(s-udev-dev, %s:\n, __func__);
 
if (v-index  1)
@@ -1105,6 +1117,7 @@ static int rtl2832_sdr_enum_freq_bands(struct file *file, 
void *priv,
struct v4l2_frequency_band *band)
 {
struct rtl2832_sdr_state *s = video_drvdata(file);
+
dev_dbg(s-udev-dev, %s: tuner=%d type=%d index=%d\n,
__func__, band-tuner, band-type, band-index);
 
@@ -1130,6 +1143,7 @@ static int rtl2832_sdr_g_frequency(struct file *file, 
void *priv,
 {
struct rtl2832_sdr_state *s = video_drvdata(file);
int ret  = 0;
+
   

Re: [PATCH] staging/media/rtl2832u_sdr: fix coding style problems by adding blank lines

2014-06-02 Thread Dan Carpenter
On Mon, Jun 02, 2014 at 12:50:35PM -0700, Ovidiu Toader wrote:
 On 06/02/14 03:21, Dan Carpenter wrote:
  Send the patch inline, not as an attachment.
  
  Read the first paragraph.
  https://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/tree/Documentation/email-clients.txt
  
  The subject should say something about adding blank lines.
 Thanks for the feedback and sorry for the inconvenience.
 Take 2:
 
 This minor patch fixes all WARNING:SPACING style warnings in rtl2832_sdr.c
 
 The new version of the file pleases checkpatch.pl when run with --ignore 
 LONG_LINE.
 

Better but not quite right.  You understand that the email *is* the
changelog?  So now it has our conversation saved in the changelog for
all time.

https://www.google.com/search?q=how+to+send+a+v2+patch

regards,
dan carpenter

--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html