diff options
author | Jannik Becher <becher.jannik@gmail.com> | 2016-08-21 14:44:20 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-08-25 08:45:27 -0400 |
commit | a769de07edfd7881d17bf6c6fa014a0e176beb8b (patch) | |
tree | 2e59cf62076a865f19a1a06c99435108f799f5bc | |
parent | fb6609280db902bd5d34445fba1c926e95e63914 (diff) |
[media] drivers: hackrf: fixed a coding style issue
changed 'unsigned' to 'unsigned int' to obtain the coding style.
Signed-off-by: Jannik Becher <Becher.Jannik@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
-rw-r--r-- | drivers/media/usb/hackrf/hackrf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/hackrf/hackrf.c b/drivers/media/usb/hackrf/hackrf.c index c2c8d12e9498..662d5090a12e 100644 --- a/drivers/media/usb/hackrf/hackrf.c +++ b/drivers/media/usb/hackrf/hackrf.c | |||
@@ -129,7 +129,7 @@ struct hackrf_dev { | |||
129 | struct list_head rx_buffer_list; | 129 | struct list_head rx_buffer_list; |
130 | struct list_head tx_buffer_list; | 130 | struct list_head tx_buffer_list; |
131 | spinlock_t buffer_list_lock; /* Protects buffer_list */ | 131 | spinlock_t buffer_list_lock; /* Protects buffer_list */ |
132 | unsigned sequence; /* Buffer sequence counter */ | 132 | unsigned int sequence; /* Buffer sequence counter */ |
133 | unsigned int vb_full; /* vb is full and packets dropped */ | 133 | unsigned int vb_full; /* vb is full and packets dropped */ |
134 | unsigned int vb_empty; /* vb is empty and packets dropped */ | 134 | unsigned int vb_empty; /* vb is empty and packets dropped */ |
135 | 135 | ||