tables.h: enable use of SECTION_TBL() on asm code

This enables asm cod eto also use SECTION_TBL(), if we want we can
later add an asm equivalent to DECLARE_SECTION_RANGE() but for tables,
but we leave this for later as we don't need it yet.

Signed-off-by: Luis R. Rodriguez <mcgrof@kernel.org>
diff --git a/include/linux/tables.h b/include/linux/tables.h
index 27a2457..18ffb56 100644
--- a/include/linux/tables.h
+++ b/include/linux/tables.h
@@ -5,11 +5,11 @@
 
 #define SECTION_TYPE_TABLES	tbl
 
-#ifndef __ASSEMBLY__
-
 #define SECTION_TBL(section, name, level)				\
 	SECTION_TYPE(section, SECTION_TYPE_TABLES, name, level)
 
+#ifndef __ASSEMBLY__
+
 /*
  * Linux linker tables
  *