]> Git Repo - linux.git/blame - arch/arm/mach-imx/leds.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/roland...
[linux.git] / arch / arm / mach-imx / leds.c
CommitLineData
1da177e4 1/*
f30c2269 2 * linux/arch/arm/mach-imx/leds.c
1da177e4
LT
3 *
4 * Copyright (C) 2004 Sascha Hauer <[email protected]>
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 */
12
13#include <linux/kernel.h>
14#include <linux/init.h>
15
16#include <asm/leds.h>
17#include <asm/mach-types.h>
18
19#include "leds.h"
20
21static int __init
22leds_init(void)
23{
24 if (machine_is_mx1ads()) {
25 leds_event = mx1ads_leds_event;
26 }
27
28 return 0;
29}
30
31__initcall(leds_init);
This page took 0.261798 seconds and 4 git commands to generate.