Add a trivial macro to check the kind of SCMI SystemPower request. Signed-off-by: Cristian Marussi <cristian.maru...@arm.com> --- include/linux/scmi_protocol.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/linux/scmi_protocol.h b/include/linux/scmi_protocol.h index fb8c8f16a49b..ecc14251a547 100644 --- a/include/linux/scmi_protocol.h +++ b/include/linux/scmi_protocol.h @@ -747,6 +747,7 @@ struct scmi_power_state_changed_report { struct scmi_system_power_state_notifier_report { ktime_t timestamp; unsigned int agent_id; +#define SCMI_SYSPOWER_IS_REQUEST_GRACEFUL(flags) ((flags) & BIT(0)) unsigned int flags; unsigned int system_state; }; -- 2.17.1