diff options
Diffstat (limited to 'arch/blackfin/include/asm/fcntl.h')
-rw-r--r-- | arch/blackfin/include/asm/fcntl.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/blackfin/include/asm/fcntl.h b/arch/blackfin/include/asm/fcntl.h new file mode 100644 index 00000000000..251c911d59c --- /dev/null +++ b/arch/blackfin/include/asm/fcntl.h | |||
@@ -0,0 +1,17 @@ | |||
1 | /* | ||
2 | * Copyright 2004-2008 Analog Devices Inc. | ||
3 | * | ||
4 | * Licensed under the GPL-2 or later. | ||
5 | */ | ||
6 | |||
7 | #ifndef _BFIN_FCNTL_H | ||
8 | #define _BFIN_FCNTL_H | ||
9 | |||
10 | #define O_DIRECTORY 040000 /* must be a directory */ | ||
11 | #define O_NOFOLLOW 0100000 /* don't follow links */ | ||
12 | #define O_DIRECT 0200000 /* direct disk access hint - currently ignored */ | ||
13 | #define O_LARGEFILE 0400000 | ||
14 | |||
15 | #include <asm-generic/fcntl.h> | ||
16 | |||
17 | #endif | ||