Skip to content

Commit f9d7f77

Browse files
joshtriplettmichal42
authored andcommitted
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>
1 parent 5aeb210 commit f9d7f77

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

arch/x86/math-emu/errors.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -330,11 +330,6 @@ asmlinkage void FPU_exception(int n)
330330

331331
RE_ENTRANT_CHECK_OFF;
332332
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-
338333
/* Get a name string for error reporting */
339334
for (i = 0; exception_names[i].type; i++)
340335
if ((exception_names[i].type & n) ==

0 commit comments

Comments
 (0)