Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1467204 > unrolled thread

[PATCH] drivers: hackrf: fixed a coding style issue

Started byJannik Becher <becher.jannik@gmail.com>
First post2016-08-21 20:50 +0200
Last post2016-08-21 20:50 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] drivers: hackrf: fixed a coding style issue Jannik Becher <becher.jannik@gmail.com> - 2016-08-21 20:50 +0200

#1467204 — [PATCH] drivers: hackrf: fixed a coding style issue

FromJannik Becher <becher.jannik@gmail.com>
Date2016-08-21 20:50 +0200
Subject[PATCH] drivers: hackrf: fixed a coding style issue
Message-ID<s8FYJ-3WX-21@gated-at.bofh.it>
changed 'unsigned' to 'unsigned int' to obtain the coding style.

Signed-off-by: Jannik Becher <Becher.Jannik@gmail.com>
---
 drivers/media/usb/hackrf/hackrf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/usb/hackrf/hackrf.c b/drivers/media/usb/hackrf/hackrf.c
index b1e229a..fc67648 100644
--- a/drivers/media/usb/hackrf/hackrf.c
+++ b/drivers/media/usb/hackrf/hackrf.c
@@ -129,7 +129,7 @@ struct hackrf_dev {
 	struct list_head rx_buffer_list;
 	struct list_head tx_buffer_list;
 	spinlock_t buffer_list_lock; /* Protects buffer_list */
-	unsigned sequence;	     /* Buffer sequence counter */
+	unsigned int sequence;	     /* Buffer sequence counter */
 	unsigned int vb_full;        /* vb is full and packets dropped */
 	unsigned int vb_empty;       /* vb is empty and packets dropped */
 
-- 
2.9.3

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web