tile: allow disabling CONFIG_EARLY_PRINTK
authorChris Metcalf <cmetcalf@mellanox.com>
Tue, 7 Jun 2016 20:49:08 +0000 (16:49 -0400)
committerChris Metcalf <cmetcalf@mellanox.com>
Tue, 7 Jun 2016 20:55:20 +0000 (16:55 -0400)
In that case, any users of early_panic() end up calling panic().

Signed-off-by: Chris Metcalf <cmetcalf@mellanox.com>
arch/tile/include/asm/setup.h

index e989090..2a0347a 100644 (file)
 #define MAXMEM_PFN     PFN_DOWN(MAXMEM)
 
 int tile_console_write(const char *buf, int count);
+
+#ifdef CONFIG_EARLY_PRINTK
 void early_panic(const char *fmt, ...);
+#else
+#define early_panic panic
+#endif
 
 /* Init-time routine to do tile-specific per-cpu setup. */
 void setup_cpu(int boot);