hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/drivers/soc/renesas/r8a77965-sysc.c
....@@ -7,7 +7,7 @@
77 * Copyright (C) 2016 Glider bvba
88 */
99
10
-#include <linux/bug.h>
10
+#include <linux/bits.h>
1111 #include <linux/kernel.h>
1212
1313 #include <dt-bindings/power/r8a77965-sysc.h>
....@@ -28,10 +28,11 @@
2828 { "a2vc1", 0x3c0, 1, R8A77965_PD_A2VC1, R8A77965_PD_A3VC },
2929 { "3dg-a", 0x100, 0, R8A77965_PD_3DG_A, R8A77965_PD_ALWAYS_ON },
3030 { "3dg-b", 0x100, 1, R8A77965_PD_3DG_B, R8A77965_PD_3DG_A },
31
- { "a3ir", 0x180, 0, R8A77965_PD_A3IR, R8A77965_PD_ALWAYS_ON },
3231 };
3332
3433 const struct rcar_sysc_info r8a77965_sysc_info __initconst = {
3534 .areas = r8a77965_areas,
3635 .num_areas = ARRAY_SIZE(r8a77965_areas),
36
+ .extmask_offs = 0x2f8,
37
+ .extmask_val = BIT(0),
3738 };