aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/flat.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2019-06-13 09:08:53 +0200
committerGreg Ungerer <gerg@kernel.org>2019-06-24 09:16:46 +1000
commit38e63483a31747ef8a964ba3f0184c1e5b507749 (patch)
tree0e08a7399a78c905d49b3a5e948b293d248db5e4 /include/linux/flat.h
parentbinfmt_flat: remove the uapi <linux/flat.h> header (diff)
downloadlinux-dev-38e63483a31747ef8a964ba3f0184c1e5b507749.tar.xz
linux-dev-38e63483a31747ef8a964ba3f0184c1e5b507749.zip
binfmt_flat: remove the unused OLD_FLAT_FLAG_RAM definition
Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Greg Ungerer <gerg@linux-m68k.org>
Diffstat (limited to 'include/linux/flat.h')
-rw-r--r--include/linux/flat.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/flat.h b/include/linux/flat.h
index 21d901ba191b..2b7cda6e9c1b 100644
--- a/include/linux/flat.h
+++ b/include/linux/flat.h
@@ -72,15 +72,12 @@ typedef union {
# if defined(mc68000) && !defined(CONFIG_COLDFIRE)
signed long offset : 30;
unsigned long type : 2;
-# define OLD_FLAT_FLAG_RAM 0x1 /* load program entirely into RAM */
# elif defined(__BIG_ENDIAN_BITFIELD)
unsigned long type : 2;
signed long offset : 30;
-# define OLD_FLAT_FLAG_RAM 0x1 /* load program entirely into RAM */
# elif defined(__LITTLE_ENDIAN_BITFIELD)
signed long offset : 30;
unsigned long type : 2;
-# define OLD_FLAT_FLAG_RAM 0x1 /* load program entirely into RAM */
# else
# error "Unknown bitfield order for flat files."
# endif