Skip to content

Commit e8c51b9

Browse files
committed
clk: rockchip: drop parenthesis from ARM || COMPILE_TEST depends
As suggested by Stephen in the series adding the rk3568 clock controller the depends works just as well without the parenthesis around the depends. So to make everything look the same, drop them from existing entries too. Suggested-by: Stephen Boyd <[email protected]> Signed-off-by: Heiko Stuebner <[email protected]> Reviewed-by: Stephen Boyd <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent cf911d8 commit e8c51b9

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

drivers/clk/rockchip/Kconfig

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,77 +11,77 @@ config COMMON_CLK_ROCKCHIP
1111
if COMMON_CLK_ROCKCHIP
1212
config CLK_PX30
1313
bool "Rockchip PX30 clock controller support"
14-
depends on (ARM64 || COMPILE_TEST)
14+
depends on ARM64 || COMPILE_TEST
1515
default y
1616
help
1717
Build the driver for PX30 Clock Driver.
1818

1919
config CLK_RV110X
2020
bool "Rockchip RV110x clock controller support"
21-
depends on (ARM || COMPILE_TEST)
21+
depends on ARM || COMPILE_TEST
2222
default y
2323
help
2424
Build the driver for RV110x Clock Driver.
2525

2626
config CLK_RK3036
2727
bool "Rockchip RK3036 clock controller support"
28-
depends on (ARM || COMPILE_TEST)
28+
depends on ARM || COMPILE_TEST
2929
default y
3030
help
3131
Build the driver for RK3036 Clock Driver.
3232

3333
config CLK_RK312X
3434
bool "Rockchip RK312x clock controller support"
35-
depends on (ARM || COMPILE_TEST)
35+
depends on ARM || COMPILE_TEST
3636
default y
3737
help
3838
Build the driver for RK312x Clock Driver.
3939

4040
config CLK_RK3188
4141
bool "Rockchip RK3188 clock controller support"
42-
depends on (ARM || COMPILE_TEST)
42+
depends on ARM || COMPILE_TEST
4343
default y
4444
help
4545
Build the driver for RK3188 Clock Driver.
4646

4747
config CLK_RK322X
4848
bool "Rockchip RK322x clock controller support"
49-
depends on (ARM || COMPILE_TEST)
49+
depends on ARM || COMPILE_TEST
5050
default y
5151
help
5252
Build the driver for RK322x Clock Driver.
5353

5454
config CLK_RK3288
5555
bool "Rockchip RK3288 clock controller support"
56-
depends on (ARM || COMPILE_TEST)
56+
depends on ARM || COMPILE_TEST
5757
default y
5858
help
5959
Build the driver for RK3288 Clock Driver.
6060

6161
config CLK_RK3308
6262
bool "Rockchip RK3308 clock controller support"
63-
depends on (ARM64 || COMPILE_TEST)
63+
depends on ARM64 || COMPILE_TEST
6464
default y
6565
help
6666
Build the driver for RK3308 Clock Driver.
6767

6868
config CLK_RK3328
6969
bool "Rockchip RK3328 clock controller support"
70-
depends on (ARM64 || COMPILE_TEST)
70+
depends on ARM64 || COMPILE_TEST
7171
default y
7272
help
7373
Build the driver for RK3328 Clock Driver.
7474

7575
config CLK_RK3368
7676
bool "Rockchip RK3368 clock controller support"
77-
depends on (ARM64 || COMPILE_TEST)
77+
depends on ARM64 || COMPILE_TEST
7878
default y
7979
help
8080
Build the driver for RK3368 Clock Driver.
8181

8282
config CLK_RK3399
8383
tristate "Rockchip RK3399 clock controller support"
84-
depends on (ARM64 || COMPILE_TEST)
84+
depends on ARM64 || COMPILE_TEST
8585
default y
8686
help
8787
Build the driver for RK3399 Clock Driver.

0 commit comments

Comments
 (0)