summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/pmdomain/renesas/rcar-sysc.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/drivers/pmdomain/renesas/rcar-sysc.h b/drivers/pmdomain/renesas/rcar-sysc.h
index 07ffce310686..ef598ecc710a 100644
--- a/drivers/pmdomain/renesas/rcar-sysc.h
+++ b/drivers/pmdomain/renesas/rcar-sysc.h
@@ -29,9 +29,15 @@
struct rcar_sysc_area {
const char *name;
- u16 chan_offs; /* Offset of PWRSR register for this area */
- u8 chan_bit; /* Bit in PWR* (except for PWRUP in PWRSR) */
- u8 isr_bit; /* Bit in SYSCI*R */
+ u16 chan_offs; /*
+ * PWRSR register offset; or 0 if area is
+ * always on
+ */
+ u8 chan_bit; /*
+ * Bit in PWR* (except for PWRUP in PWRSR);
+ * 0 if area is always on
+ */
+ u8 isr_bit; /* Bit in SYSCI*R; 0 if area is always on */
s8 parent; /* -1 if none */
u8 flags; /* See PD_* */
};