[BACK]Return to leds.c CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / arch / arm / mach-imx

File: [Development] / linux-2.6-xfs / arch / arm / mach-imx / leds.c (download)

Revision 1.1, Fri Oct 1 15:10:15 2004 UTC (13 years, 1 month ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN

Upgrade kernel to 2.6.9-rc3 and kdb to 4.4
Merge of 2.6.x-xfs-melb:linux:19628a by kenmcd.

/*
 * linux/arch/arm/mach-imx/leds.h
 *
 * 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);