2022-09-01 01:35:45

by Jilin Yuan

[permalink] [raw]
Subject: [PATCH] media: platform: Use 'unsigned int' instead of just 'unsigned'.

'unsigned int' should be clearer than 'unsigned'.

Signed-off-by: Jilin Yuan <[email protected]>
---
drivers/media/platform/samsung/exynos4-is/fimc-is.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/platform/samsung/exynos4-is/fimc-is.h b/drivers/media/platform/samsung/exynos4-is/fimc-is.h
index 06586e455b1d..89bb1bc15c81 100644
--- a/drivers/media/platform/samsung/exynos4-is/fimc-is.h
+++ b/drivers/media/platform/samsung/exynos4-is/fimc-is.h
@@ -292,7 +292,7 @@ struct fimc_is {
struct is_fd_result_header fd_header;

struct chain_config config[IS_SC_MAX];
- unsigned config_index;
+ unsigned int config_index;

struct is_region *is_p_region;
dma_addr_t is_dma_p_region;
--
2.36.1