media: siano: Use 'unsigned int' instead of just 'unsigned'.

Message ID 20220901011649.24393-1-yuanjilin@cdjrlc.com (mailing list archive)
State Rejected
Headers
Series media: siano: Use 'unsigned int' instead of just 'unsigned'. |

Commit Message

Jilin Yuan Sept. 1, 2022, 1:16 a.m. UTC
  'unsigned int' should be clearer than 'unsigned'.

Signed-off-by: Jilin Yuan <yuanjilin@cdjrlc.com>
---
 drivers/media/common/siano/smsdvb-debugfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/drivers/media/common/siano/smsdvb-debugfs.c b/drivers/media/common/siano/smsdvb-debugfs.c
index 8916bb644756..a07d3c335d02 100644
--- a/drivers/media/common/siano/smsdvb-debugfs.c
+++ b/drivers/media/common/siano/smsdvb-debugfs.c
@@ -25,7 +25,7 @@  struct smsdvb_debugfs {
 	spinlock_t		lock;
 
 	char			stats_data[PAGE_SIZE];
-	unsigned		stats_count;
+	unsigned int	stats_count;
 	bool			stats_was_read;
 
 	wait_queue_head_t	stats_queue;