]> www.infradead.org Git - users/jedix/linux-maple.git/commit
clk: ep93xx: Use int type to store negative error codes
authorQianfeng Rong <rongqianfeng@vivo.com>
Sat, 30 Aug 2025 12:27:52 +0000 (20:27 +0800)
committerStephen Boyd <sboyd@kernel.org>
Sun, 21 Sep 2025 20:02:18 +0000 (13:02 -0700)
commit41bba99777be40924d99af117e8c220652c20ab6
tree51ac20c53e0638846d0774853e544f60f0ab5e73
parentb52297f6eb82e46ae5ecc34d270e7ed96eca0594
clk: ep93xx: Use int type to store negative error codes

Change the 'ret' variable in ep93xx_uart_clock_init() from unsigned int to
int, as it needs to store either negative error codes or zero.

Storing the negative error codes in unsigned type, doesn't cause an issue
at runtime but can be confusing. Additionally, assigning negative error
codes to unsigned type may trigger a GCC warning when the -Wsign-conversion
flag is enabled.

No effect on runtime.

Signed-off-by: Qianfeng Rong <rongqianfeng@vivo.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
drivers/clk/clk-ep93xx.c