From: Jannik Becher Date: Sun, 21 Aug 2016 18:44:20 +0000 (-0300) Subject: [media] drivers: hackrf: fixed a coding style issue X-Git-Tag: v4.9-rc1~43^2~267 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a769de07edfd7881d17bf6c6fa014a0e176beb8b;p=karo-tx-linux.git [media] drivers: hackrf: fixed a coding style issue changed 'unsigned' to 'unsigned int' to obtain the coding style. Signed-off-by: Jannik Becher Signed-off-by: Mauro Carvalho Chehab --- 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 { 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 */