Index: firmware/target/arm/s3c2440/gigabeat-fx/button-meg-fx.c =================================================================== --- firmware/target/arm/s3c2440/gigabeat-fx/button-meg-fx.c (revision 22477) +++ firmware/target/arm/s3c2440/gigabeat-fx/button-meg-fx.c (working copy) @@ -109,7 +109,6 @@ /* if the buttons dont agree twice in a row, then its none */ lastbutton = btn; btn = BUTTON_NONE; - buttonlight_on(); } /* Check for hold first - exit if asserted with no button pressed */ @@ -121,7 +120,6 @@ if (buttons) { btn |= buttons; - buttonlight_on(); } /* the touchpad - only watch the lines we actually read */ @@ -152,7 +150,6 @@ if (touchpad & ((1 << 9) | (1 << 8) | (1 << 7))) btn |= BUTTON_LEFT; - buttonlight_on(); } return btn;