Remove some whitespace at the end of some lines

This commit is contained in:
Gregory Nutt 2017-03-24 12:46:01 -06:00
parent 210ac0f77d
commit af85aca1aa

View File

@ -212,12 +212,12 @@ static void wl_enable_irq(FAR struct cc3000_config_s *state, bool enable)
if (enable)
{
(void)kl_gpioirqattach(GPIO_WIFI_INT, priv->handler, priv->arg);
kl_gpioirqenable(GPIO_WIFI_INT);
kl_gpioirqenable(GPIO_WIFI_INT);
}
else
{
(void)kl_gpioirqattach(GPIO_WIFI_INT, NULL, NULL);
kl_gpioirqdisable(GPIO_WIFI_INT);
kl_gpioirqdisable(GPIO_WIFI_INT);
}
}