]> git.dujemihanovic.xyz Git - u-boot.git/commit
serial: s5p: Fix clk_get_by_index() error code check
authorSam Protsenko <semen.protsenko@linaro.org>
Tue, 7 Nov 2023 17:34:17 +0000 (11:34 -0600)
committerMinkyu Kang <mk7.kang@samsung.com>
Mon, 13 Nov 2023 07:20:58 +0000 (16:20 +0900)
commit2227f4c0afed9fef940ace67d1482417eb876316
tree20618dc3078182dca47b333166b6846899573acf
parent08cfa971a717ff6aedf52066efb9e227eaa7aac4
serial: s5p: Fix clk_get_by_index() error code check

clk_get_by_index() returns negative number on error. Assigning it to
unsigned int makes the subsequent "ret < 0" check always false, leading
in turn to possible unhandled errors. Change 'ret' variable type to
signed int so the code checks and handles clk_get_by_index() return code
properly.

Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
Fixes: cf75cdf96ef2 ("serial: s5p: use clock api to get clock rate")
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
drivers/serial/serial_s5p.c