File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/unix/linux_like/linux/arch/mips Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ cfg_if! {
200
200
// where S stands for size (int, long, struct...)
201
201
// where T stands for type ('f','v','X'...)
202
202
// where N stands for NR (NumbeR)
203
- if #[ cfg( target_arch = "mips" ) ] {
203
+ if #[ cfg( any ( target_arch = "mips" , target_arch = "mips32r6" ) ) ] {
204
204
pub const FS_IOC_GETFLAGS : :: Ioctl = 0x40046601 ;
205
205
pub const FS_IOC_SETFLAGS : :: Ioctl = 0x80046602 ;
206
206
pub const FS_IOC_GETVERSION : :: Ioctl = 0x40047601 ;
@@ -209,7 +209,7 @@ cfg_if! {
209
209
pub const FS_IOC32_SETFLAGS : :: Ioctl = 0x80046602 ;
210
210
pub const FS_IOC32_GETVERSION : :: Ioctl = 0x40047601 ;
211
211
pub const FS_IOC32_SETVERSION : :: Ioctl = 0x80047602 ;
212
- } else if #[ cfg( target_arch = "mips64" ) ] {
212
+ } else if #[ cfg( any ( target_arch = "mips64" , target_arch = "mips64r6" ) ) ] {
213
213
pub const FS_IOC_GETFLAGS : :: Ioctl = 0x40086601 ;
214
214
pub const FS_IOC_SETFLAGS : :: Ioctl = 0x80086602 ;
215
215
pub const FS_IOC_GETVERSION : :: Ioctl = 0x40087601 ;
You can’t perform that action at this time.
0 commit comments