mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 12:34:31 +00:00
io_uring: drop unnecessary 'static in const
clippy warns about the redundant 'static lifetime, which is implied for const. BUG=None TEST=bin/clippy Change-Id: I1d4dca90de359857ec947e12ae47858785d8867c Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2253065 Reviewed-by: Dylan Reid <dgreid@chromium.org> Tested-by: Daniel Verkamp <dverkamp@chromium.org> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
This commit is contained in:
parent
5d6a17f4b2
commit
af787af9bc
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ pub const FS_ENCRYPTION_MODE_AES_128_CTS: ::std::os::raw::c_uint = 6;
|
|||
pub const FS_ENCRYPTION_MODE_SPECK128_256_XTS: ::std::os::raw::c_uint = 7;
|
||||
pub const FS_ENCRYPTION_MODE_SPECK128_256_CTS: ::std::os::raw::c_uint = 8;
|
||||
pub const FS_ENCRYPTION_MODE_ADIANTUM: ::std::os::raw::c_uint = 9;
|
||||
pub const FS_KEY_DESC_PREFIX: &'static [u8; 9usize] = b"fscrypt:\0";
|
||||
pub const FS_KEY_DESC_PREFIX: &[u8; 9usize] = b"fscrypt:\0";
|
||||
pub const FS_KEY_DESC_PREFIX_SIZE: ::std::os::raw::c_uint = 8;
|
||||
pub const FS_MAX_KEY_SIZE: ::std::os::raw::c_uint = 64;
|
||||
pub const FS_SECRM_FL: ::std::os::raw::c_uint = 1;
|
||||
|
|
Loading…
Reference in a new issue