diff options
author | Nobuyoshi Nakada <[email protected]> | 2021-10-25 10:03:17 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2021-10-26 14:43:12 +0900 |
commit | 049e1f8560d2f5c06afa6b8fbcf7d4c8e0132561 (patch) | |
tree | 51f91769920da9a521abd6b139210a797beb488c /io.c | |
parent | 5c2b6441660cdabf1efc745c25f2b1a41bb3b087 (diff) |
Fix typo
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -9933,7 +9933,7 @@ do_ioctl(int fd, ioctl_req_t cmd, long narg) } #endif -#define DEFULT_IOCTL_NARG_LEN (256) +#define DEFAULT_IOCTL_NARG_LEN (256) #if defined(__linux__) && defined(_IOC_SIZE) static long @@ -9943,14 +9943,14 @@ linux_iocparm_len(ioctl_req_t cmd) if ((cmd & 0xFFFF0000) == 0) { /* legacy and unstructured ioctl number. */ - return DEFULT_IOCTL_NARG_LEN; + return DEFAULT_IOCTL_NARG_LEN; } len = _IOC_SIZE(cmd); /* paranoia check for silly drivers which don't keep ioctl convention */ - if (len < DEFULT_IOCTL_NARG_LEN) - len = DEFULT_IOCTL_NARG_LEN; + if (len < DEFAULT_IOCTL_NARG_LEN) + len = DEFAULT_IOCTL_NARG_LEN; return len; } @@ -9972,7 +9972,7 @@ ioctl_narg_len(ioctl_req_t cmd) len = linux_iocparm_len(cmd); #else /* otherwise guess at what's safe */ - len = DEFULT_IOCTL_NARG_LEN; + len = DEFAULT_IOCTL_NARG_LEN; #endif return len; |