diff options
Diffstat (limited to 'arch/sandbox/include/asm/scmi_test.h')
-rw-r--r-- | arch/sandbox/include/asm/scmi_test.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/sandbox/include/asm/scmi_test.h b/arch/sandbox/include/asm/scmi_test.h index 619f8f5098c..c9717118bcb 100644 --- a/arch/sandbox/include/asm/scmi_test.h +++ b/arch/sandbox/include/asm/scmi_test.h @@ -27,10 +27,12 @@ struct sandbox_scmi_pwd { * @id: Identifier of the clock used in the SCMI protocol * @enabled: Clock state: true if enabled, false if disabled * @rate: Clock rate in Hertz + * @perm: Indicating state/parent/rate permission */ struct sandbox_scmi_clk { bool enabled; ulong rate; + u32 perm; }; /** @@ -108,7 +110,7 @@ struct sandbox_scmi_devices { size_t regul_count; }; -#ifdef CONFIG_SCMI_FIRMWARE +#if IS_ENABLED(CONFIG_SCMI_FIRMWARE) /** * sandbox_scmi_channel_id - Get the channel id * @dev: Reference to the SCMI protocol device |