mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 14:04:26 -04:00 
			
		
		
		
	Update our copies of the brcm2708 patches to the latest rpi-3.10-y rebased against linux-3.10.y stable (3.10.32). This should hopefully make it easier for us in the future to leverage the raspberry/rpi-* branches. Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 39770
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From e2fe98dc5d658c504d31a0ad1eb9748a2001ce09 Mon Sep 17 00:00:00 2001
 | |
| From: popcornmix <popcornmix@gmail.com>
 | |
| Date: Tue, 11 Feb 2014 17:03:51 +0000
 | |
| Subject: [PATCH 166/174] bcm2708: Allow disk activity led gpio to be specified
 | |
| 
 | |
| ---
 | |
|  arch/arm/mach-bcm2708/bcm2708.c | 8 +++++++-
 | |
|  1 file changed, 7 insertions(+), 1 deletion(-)
 | |
| 
 | |
| --- a/arch/arm/mach-bcm2708/bcm2708.c
 | |
| +++ b/arch/arm/mach-bcm2708/bcm2708.c
 | |
| @@ -83,6 +83,8 @@
 | |
|  /* command line parameters */
 | |
|  static unsigned boardrev, serial;
 | |
|  static unsigned uart_clock;
 | |
| +static unsigned disk_led_gpio = 16;
 | |
| +static unsigned disk_led_active_low = 1;
 | |
|  static unsigned reboot_part = 0;
 | |
|  static unsigned w1_gpio_pin = W1_GPIO;
 | |
|  
 | |
| @@ -965,7 +967,9 @@ static struct platform_device bcm2708_le
 | |
|  
 | |
|  static void __init bcm2708_init_led(void)
 | |
|  {
 | |
| -	platform_device_register(&bcm2708_led_device);
 | |
| +  bcm2708_leds[0].gpio = disk_led_gpio;
 | |
| +  bcm2708_leds[0].active_low = disk_led_active_low;
 | |
| +  platform_device_register(&bcm2708_led_device);
 | |
|  }
 | |
|  #else
 | |
|  static inline void bcm2708_init_led(void)
 | |
| @@ -1004,5 +1008,7 @@ MACHINE_END
 | |
|  module_param(boardrev, uint, 0644);
 | |
|  module_param(serial, uint, 0644);
 | |
|  module_param(uart_clock, uint, 0644);
 | |
| +module_param(disk_led_gpio, uint, 0644);
 | |
| +module_param(disk_led_active_low, uint, 0644);
 | |
|  module_param(reboot_part, uint, 0644);
 | |
|  module_param(w1_gpio_pin, uint, 0644);
 |