[Armadeus-commitlog] armadeus branch, master, updated. armadeus-4.0-2450-g52b05d5
Brought to you by:
sszy
|
From: Fabien M <fa...@us...> - 2011-08-05 12:14:43
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 52b05d53aad1f2a1d3770fd98fc8a858f99a7a44 (commit)
from 6d44a5042a2864677164d1f1cf7e4ea05d77deec (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 52b05d53aad1f2a1d3770fd98fc8a858f99a7a44
Author: Fabien Marteau <fab...@ar...>
Date: Fri Aug 5 14:13:55 2011 +0200
[linux][fpga] delete useless s_led.c driver code
-----------------------------------------------------------------------
Summary of changes:
.../modules/fpga/virtual_components/led/s_led.c | 69 --------------------
1 files changed, 0 insertions(+), 69 deletions(-)
delete mode 100644 target/linux/modules/fpga/virtual_components/led/s_led.c
diff --git a/target/linux/modules/fpga/virtual_components/led/s_led.c b/target/linux/modules/fpga/virtual_components/led/s_led.c
deleted file mode 100644
index 19c2e3f..0000000
--- a/target/linux/modules/fpga/virtual_components/led/s_led.c
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- ***********************************************************************
- *
- * (c) Copyright 2008 Armadeus project
- * Fabien Marteau <fab...@ar...>
- * Specific led driver for generic led driver
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
- * any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- **********************************************************************
- */
-
-#include <linux/version.h>
-#include <linux/init.h>
-#include <linux/module.h>
-#include <linux/platform_device.h>
-
-#include"led.h"
-
-
-static struct plat_led_port plat_led_data[] = {
- {
- .name = "led0",
- .num = 0,
- .membase = 0x04
- },
- {
- .name = "led1",
- .num = 1,
- .membase = 0x06
- },
-};
-
-static struct platform_device plat_led_device = {
- .name = "led",
- .id = 0,
- .dev = {
- .platform_data = plat_led_data
- },
-};
-
-static int __init sled_init(void)
-{
- return platform_device_register(&plat_led_device);
-}
-
-static void __exit sled_exit(void)
-{
- platform_device_unregister(&plat_led_device);
-}
-
-module_init(sled_init);
-module_exit(sled_exit);
-
-MODULE_AUTHOR("Fabien Marteau <fab...@ar...>");
-MODULE_DESCRIPTION("Driver to blink blink some LEDs");
-MODULE_LICENSE("GPL");
-
hooks/post-receive
--
armadeus
|