Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4c22ea8f authored by Tanmay Upadhyay's avatar Tanmay Upadhyay Committed by Eric Miao
Browse files

ARM: pxa168/gplugd: free correct GPIO

parent 3647a40f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -162,7 +162,7 @@ static void __init select_disp_freq(void)
				"frequency\n");
	} else {
		gpio_direction_output(35, 1);
		gpio_free(104);
		gpio_free(35);
	}

	if (unlikely(gpio_request(85, "DISP_FREQ_SEL_2"))) {
@@ -170,7 +170,7 @@ static void __init select_disp_freq(void)
				"frequency\n");
	} else {
		gpio_direction_output(85, 0);
		gpio_free(104);
		gpio_free(85);
	}
}