Commit 9664efeb authored by Jason Wang's avatar Jason Wang Committed by Arnd Bergmann
Browse files

ARM: s3c: delete unneed local variable "delay"

parent 9dbacd46
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -79,13 +79,12 @@ static struct pcf50633 *gta02_pcf;

static long gta02_panic_blink(int state)
{
	long delay = 0;
	char led;

	led = (state) ? 1 : 0;
	gpio_direction_output(GTA02_GPIO_AUX_LED, led);

	return delay;
	return 0;
}