diff options
author | Russell King | 2007-07-18 10:37:10 +0200 |
---|---|---|
committer | Russell King | 2007-07-20 10:39:57 +0200 |
commit | 228adef16d6e7b7725ef6b9ba760810d5966afa5 (patch) | |
tree | f7473090e2284a7f3b2933d97e684e4b2445d79c /include/asm-arm | |
parent | [ARM] avoid floppy warnings by using fd_dma_setup() (diff) | |
download | kernel-qcow2-linux-228adef16d6e7b7725ef6b9ba760810d5966afa5.tar.gz kernel-qcow2-linux-228adef16d6e7b7725ef6b9ba760810d5966afa5.tar.xz kernel-qcow2-linux-228adef16d6e7b7725ef6b9ba760810d5966afa5.zip |
[ARM] vfp: make fpexc bit names less verbose
Use the fpexc abbreviated names instead of long verbose names
for fpexc bits.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include/asm-arm')
-rw-r--r-- | include/asm-arm/vfp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-arm/vfp.h b/include/asm-arm/vfp.h index 14c5e0946c47..bd6be9d7f772 100644 --- a/include/asm-arm/vfp.h +++ b/include/asm-arm/vfp.h @@ -26,8 +26,8 @@ #define FPSID_REV_MASK (0xF << FPSID_REV_BIT) /* FPEXC bits */ -#define FPEXC_EXCEPTION (1<<31) -#define FPEXC_ENABLE (1<<30) +#define FPEXC_EX (1 << 31) +#define FPEXC_EN (1 << 30) /* FPSCR bits */ #define FPSCR_DEFAULT_NAN (1<<25) |