mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
clk: rockchip: rk3568: Fix gcc warning
drivers/clk/rockchip/clk-rk3568.c:162:2: warning: this decimal constant is unsigned only in ISO C90 RK3568_CPUCLK_RATE(2208000000, 1, 1, 1, 9, 9, 9, 9), Signed-off-by: Tao Huang <huangtao@rock-chips.com> Change-Id: I697e4b2a9611cf49233d40361863cc820f20d1fa
This commit is contained in:
@@ -148,7 +148,7 @@ static struct rockchip_pll_rate_table rk3568_pll_rates[] = {
|
||||
|
||||
#define RK3568_CPUCLK_RATE(_prate, _apllcore, _sclk, _acore, _atcore, _gicclk, _pclk, _periph) \
|
||||
{ \
|
||||
.prate = _prate, \
|
||||
.prate = _prate##U, \
|
||||
.divs = { \
|
||||
RK3568_CLKSEL0(_apllcore), \
|
||||
RK3568_CLKSEL1(_sclk), \
|
||||
|
||||
Reference in New Issue
Block a user