summaryrefslogtreecommitdiff
path: root/arch/arm/mach-imx/leds.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2009-04-01 12:41:21 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2009-05-07 16:15:51 +0200
commit1341d34ffc296f98dc84876f35f3151525dc02a2 (patch)
treed120e94a2f189ebecfc974db6f0d56bc1963121e /arch/arm/mach-imx/leds.c
parent8c8fdbc9bd9718b21146065de61c0cafdff11ecb (diff)
downloadlinux-3.10-1341d34ffc296f98dc84876f35f3151525dc02a2.tar.gz
linux-3.10-1341d34ffc296f98dc84876f35f3151525dc02a2.tar.bz2
linux-3.10-1341d34ffc296f98dc84876f35f3151525dc02a2.zip
[ARM] remove arch-imx
arch-imx is superseeded by the MXC architecture support. This patch removes arch/arm/mach-imx from the kernel. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-imx/leds.c')
-rw-r--r--arch/arm/mach-imx/leds.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/arch/arm/mach-imx/leds.c b/arch/arm/mach-imx/leds.c
deleted file mode 100644
index cf30803e019..00000000000
--- a/arch/arm/mach-imx/leds.c
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * linux/arch/arm/mach-imx/leds.c
- *
- * Copyright (C) 2004 Sascha Hauer <sascha@saschahauer.de>
- *
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- */
-
-#include <linux/kernel.h>
-#include <linux/init.h>
-
-#include <asm/leds.h>
-#include <asm/mach-types.h>
-
-#include "leds.h"
-
-static int __init
-leds_init(void)
-{
- if (machine_is_mx1ads()) {
- leds_event = mx1ads_leds_event;
- }
-
- return 0;
-}
-
-__initcall(leds_init);