View Single Post
  #1262 (permalink)  
Old 02-19-2012, 01:47 AM
muziling's Avatar
muziling
PPCGeeks Regular
Offline
 
Join Date: Nov 2010
Posts: 175
Reputation: 55
muziling is becoming a great contributor
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [TESTING] - NAND OMGB (1.2.3)

https://gitorious.org/~acl/linux-on-...p-klt.c#line74

Code:
brightness_amber = data->leds[8].brightness;
brightness_green = data->leds[9].brightness;
should be
Code:
brightness_amber = data->leds[7].brightness;
brightness_green = data->leds[8].brightness;
Reply With Quote