mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-11 04:26:38 +00:00
sys_util: ioctl: Make clippy clean
Signed-off-by: Dylan Reid <dgreid@chromium.org> Change-Id: Ic01c67f12be6b76887796beb73d1bd82077b87b3 Reviewed-on: https://chromium-review.googlesource.com/1510433 Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Stephen Barber <smbarber@chromium.org>
This commit is contained in:
parent
681d1ff584
commit
788d0de96a
1 changed files with 4 additions and 4 deletions
|
@ -135,10 +135,10 @@ pub const _IOC_DIRSHIFT: c_uint = 30;
|
|||
pub const _IOC_NONE: c_uint = 0;
|
||||
pub const _IOC_WRITE: c_uint = 1;
|
||||
pub const _IOC_READ: c_uint = 2;
|
||||
pub const IOC_IN: c_uint = 1073741824;
|
||||
pub const IOC_OUT: c_uint = 2147483648;
|
||||
pub const IOC_INOUT: c_uint = 3221225472;
|
||||
pub const IOCSIZE_MASK: c_uint = 1073676288;
|
||||
pub const IOC_IN: c_uint = 1_073_741_824;
|
||||
pub const IOC_OUT: c_uint = 2_147_483_648;
|
||||
pub const IOC_INOUT: c_uint = 3_221_225_472;
|
||||
pub const IOCSIZE_MASK: c_uint = 1_073_676_288;
|
||||
pub const IOCSIZE_SHIFT: c_uint = 16;
|
||||
|
||||
/// Run an ioctl with no arguments.
|
||||
|
|
Loading…
Reference in a new issue