From d8c45bf6de68c67ea651543b40f3f657941c968c Mon Sep 17 00:00:00 2001 From: Thomas Ingleby Date: Fri, 20 Jun 2014 18:27:44 +0100 Subject: [PATCH] maa: remove dev printing Signed-off-by: Thomas Ingleby --- src/maa.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/maa.c b/src/maa.c index 65e18b0..4c09c83 100644 --- a/src/maa.c +++ b/src/maa.c @@ -384,8 +384,6 @@ maa_swap_complex_gpio(int pin, int out) if (plat == NULL) return MAA_ERROR_INVALID_PLATFORM; - printf("SWAP CALLED on %i with bool as %i", pin,out); - switch (platform_type) { case MAA_INTEL_GALILEO_GEN2: printf("Intel Galileo Gen 2\n"); @@ -393,7 +391,6 @@ maa_swap_complex_gpio(int pin, int out) return MAA_SUCCESS; if (plat->pins[pin].gpio.complex_cap.output_en == 1) { maa_gpio_context output_e; - printf("Doing stuff here with %i", plat->pins[pin].gpio.output_enable); output_e = maa_gpio_init_raw(plat->pins[pin].gpio.output_enable); if (maa_gpio_dir(output_e, MAA_GPIO_OUT) != MAA_SUCCESS) return MAA_ERROR_INVALID_RESOURCE;