diff options
author | Josh Triplett <josh@joshtriplett.org> | 2013-12-23 16:55:43 -0500 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2014-01-27 17:14:12 -0500 |
commit | f9d7f7778c5206d9de34fa500f854f25edb56e4b (patch) | |
tree | 6fe52ec2368cd492f1261972820969941fefddee /arch/x86/math-emu | |
parent | 5aeb210bfac5d92b0c12df2a29f11a1637fbda1f (diff) |
x86: math-emu: Drop already-disabled print of build date
The kernel already has this information, so other bits of kernel code
shouldn't duplicate that. This also eliminates the use of __DATE__,
which makes the build non-deterministic.
This message was already disabled at build time, with PRINT_MESSAGES
undef'd at the top of the file.
Signed-off-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'arch/x86/math-emu')
-rw-r--r-- | arch/x86/math-emu/errors.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/x86/math-emu/errors.c b/arch/x86/math-emu/errors.c index 59d353d2c599..a5449089cd9f 100644 --- a/arch/x86/math-emu/errors.c +++ b/arch/x86/math-emu/errors.c | |||
@@ -330,11 +330,6 @@ asmlinkage void FPU_exception(int n) | |||
330 | 330 | ||
331 | RE_ENTRANT_CHECK_OFF; | 331 | RE_ENTRANT_CHECK_OFF; |
332 | if ((~control_word & n & CW_Exceptions) || (n == EX_INTERNAL)) { | 332 | if ((~control_word & n & CW_Exceptions) || (n == EX_INTERNAL)) { |
333 | #ifdef PRINT_MESSAGES | ||
334 | /* My message from the sponsor */ | ||
335 | printk(FPU_VERSION " " __DATE__ " (C) W. Metzenthen.\n"); | ||
336 | #endif /* PRINT_MESSAGES */ | ||
337 | |||
338 | /* Get a name string for error reporting */ | 333 | /* Get a name string for error reporting */ |
339 | for (i = 0; exception_names[i].type; i++) | 334 | for (i = 0; exception_names[i].type; i++) |
340 | if ((exception_names[i].type & n) == | 335 | if ((exception_names[i].type & n) == |