This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: ccs-pll: Use explicit 32-bit unsigned type
Author:  Sakari Ailus <[email protected]>
Date:    Tue Aug 25 22:31:23 2020 +0200

Use uint32_t instead of unsigned int for a variable that contains
explicitly 32-bit numbers.

Signed-off-by: Sakari Ailus <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>

 drivers/media/i2c/ccs-pll.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

---

diff --git a/drivers/media/i2c/ccs-pll.c b/drivers/media/i2c/ccs-pll.c
index b23e959000a4..d33a2575329c 100644
--- a/drivers/media/i2c/ccs-pll.c
+++ b/drivers/media/i2c/ccs-pll.c
@@ -177,7 +177,7 @@ __ccs_pll_calculate(struct device *dev, const struct 
ccs_pll_limits *lim,
        uint32_t more_mul_factor;
        uint32_t min_vt_div, max_vt_div, vt_div;
        uint32_t min_sys_div, max_sys_div;
-       unsigned int i;
+       uint32_t i;
 
        /*
         * Get pre_pll_clk_div so that our pll_op_clk_freq_hz won't be
@@ -406,7 +406,7 @@ int ccs_pll_calculate(struct device *dev, const struct 
ccs_pll_limits *lim,
        uint16_t max_op_pre_pll_clk_div;
        uint32_t lane_op_clock_ratio;
        uint32_t mul, div;
-       unsigned int i;
+       uint32_t i;
        int rval = -EINVAL;
 
        if (pll->flags & CCS_PLL_FLAG_NO_OP_CLOCKS) {

_______________________________________________
linuxtv-commits mailing list
[email protected]
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to