diff options
author | Pierre-Louis Bossart <[email protected]> | 2024-08-02 14:46:07 +0200 |
---|---|---|
committer | Mark Brown <[email protected]> | 2024-08-02 14:05:14 +0100 |
commit | e9e7eeaf199c7961d634235dbedeb7b682b1dd32 (patch) | |
tree | 464ffd1ebc10225e4c7dd3784170b590c35deb4b | |
parent | cac88e96ba0961921b8068326579b26094f37ba4 (diff) |
ASoC: SOF: sof-priv.h: optimize snd_sof_mailbox
Reverse the two members to remove a hole.
Signed-off-by: Pierre-Louis Bossart <[email protected]>
Reviewed-by: Ranjani Sridharan <[email protected]>
Reviewed-by: Péter Ujfalusi <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/sof/sof-priv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sof/sof-priv.h b/sound/soc/sof/sof-priv.h index 28179a573762..6ecc58e11592 100644 --- a/sound/soc/sof/sof-priv.h +++ b/sound/soc/sof/sof-priv.h @@ -412,8 +412,8 @@ struct snd_sof_debugfs_map { /* mailbox descriptor, used for host <-> DSP IPC */ struct snd_sof_mailbox { - u32 offset; size_t size; + u32 offset; }; /* IPC message descriptor for host <-> DSP IO */ |