Subject: [@num@/@total@] i.MX family: Clean current platform code
From: Juergen Beisert <j.beisert@pengutronix.de>

This patch cleans the platform code from doxygen comments (incomplete yet).

Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>

---
 arch/arm/plat-mxc/Kconfig  |    7 ++-----
 arch/arm/plat-mxc/Makefile |    4 ----
 arch/arm/plat-mxc/irq.c    |   14 +++-----------
 3 files changed, 5 insertions(+), 20 deletions(-)

Index: arch/arm/plat-mxc/irq.c
===================================================================
--- arch/arm/plat-mxc/irq.c.orig
+++ arch/arm/plat-mxc/irq.c
@@ -19,21 +19,13 @@
 #include <asm/mach/irq.h>
 #include <asm/arch/common.h>
 
-/*!
- * Disable interrupt number "irq" in the AVIC
- *
- * @param  irq          interrupt source number
- */
+/* Disable interrupt number "irq" in the AVIC */
 static void mxc_mask_irq(unsigned int irq)
 {
 	__raw_writel(irq, AVIC_INTDISNUM);
 }
 
-/*!
- * Enable interrupt number "irq" in the AVIC
- *
- * @param  irq          interrupt source number
- */
+/* Enable interrupt number "irq" in the AVIC */
 static void mxc_unmask_irq(unsigned int irq)
 {
 	__raw_writel(irq, AVIC_INTENNUM);
@@ -45,7 +37,7 @@ static struct irq_chip mxc_avic_chip = {
 	.unmask = mxc_unmask_irq,
 };
 
-/*!
+/*
  * This function initializes the AVIC hardware and disables all the
  * interrupts. It registers the interrupt enable and disable functions
  * to the kernel for each interrupt source.
Index: arch/arm/plat-mxc/Makefile
===================================================================
--- arch/arm/plat-mxc/Makefile.orig
+++ arch/arm/plat-mxc/Makefile
@@ -4,7 +4,3 @@
 
 # Common support
 obj-y := irq.o
-
-obj-m :=
-obj-n :=
-obj-  :=
Index: arch/arm/plat-mxc/Kconfig
===================================================================
--- arch/arm/plat-mxc/Kconfig.orig
+++ arch/arm/plat-mxc/Kconfig
@@ -1,10 +1,9 @@
-if ARCH_MXC
-
 menu "Freescale MXC Implementations"
 
 choice
 	prompt "MXC/iMX System Type"
-	default 0
+	depends on ARCH_MXC
+	default ARCH_MX3
 
 config ARCH_MX3
 	bool "MX3-based"
@@ -16,5 +15,3 @@ endchoice
 source "arch/arm/mach-mx3/Kconfig"
 
 endmenu
-
-endif
