NOMMU: Remove an extraneous no_printk()

Remove an extraneous no_printk() in mm/nommu.c that got missed when the
function got generalised from several things that used it in commit
12fdff3fc248 ("Add a dummy printk function for the maintenance of unused
printks").

Without this, the following error is observed:

mm/nommu.c:41: error: conflicting types for 'no_printk'
include/linux/kernel.h:314: error: previous definition of 'no_printk' was here

Reported-by: Michal Simek <monstr@monstr.eu>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by David Howells and committed by Linus Torvalds fe622e76 c7887325

-5
-5
mm/nommu.c
··· 36 36 #include <asm/mmu_context.h> 37 37 #include "internal.h" 38 38 39 - static inline __attribute__((format(printf, 1, 2))) 40 - void no_printk(const char *fmt, ...) 41 - { 42 - } 43 - 44 39 #if 0 45 40 #define kenter(FMT, ...) \ 46 41 printk(KERN_DEBUG "==> %s("FMT")\n", __func__, ##__VA_ARGS__)