diff options
| author | Tom Rini <[email protected]> | 2021-10-26 18:34:55 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-10-26 18:34:55 -0400 |
| commit | c9661d0fee0fa57b2ae2442829ed4e6b014c6296 (patch) | |
| tree | b088ee2d5955e72327db9660fdfcce1898aafc7d /include | |
| parent | 75e33b378b3c81f1be1a8fa3815390b39fddda57 (diff) | |
| parent | 28ab12ad145d92de13baf679c8e3733be99ee95e (diff) | |
Merge branch '2021-10-26-add-nand-biterr-and-bugfixes'
- Add biterr sub-command to "nand"
- scmi, rsa, uuid bugfixes, re-sort DFU menu in Kconfig and remove
superfluous checks before free in env.
Diffstat (limited to 'include')
| -rw-r--r-- | include/scmi_protocols.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/scmi_protocols.h b/include/scmi_protocols.h index 2db71697e84..ef26e721762 100644 --- a/include/scmi_protocols.h +++ b/include/scmi_protocols.h @@ -97,14 +97,14 @@ struct scmi_clk_rate_get_out { /** * struct scmi_clk_state_in - Message payload for CLOCK_RATE_SET command - * @clock_id: SCMI clock ID * @flags: Flags for the clock rate set request + * @clock_id: SCMI clock ID * @rate_lsb: 32bit LSB of the clock rate in Hertz * @rate_msb: 32bit MSB of the clock rate in Hertz */ struct scmi_clk_rate_set_in { - u32 clock_id; u32 flags; + u32 clock_id; u32 rate_lsb; u32 rate_msb; }; |
