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:
Tao Huang
2020-09-21 17:22:59 +08:00
parent b673079429
commit 3b31279237

View File

@@ -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), \