gpio: indent fix

pull/9221/head
Martin Kojtal 2019-05-20 15:20:21 +01:00 committed by Oren Cohen
parent 67905bddae
commit a115c9333f
1 changed files with 21 additions and 21 deletions

View File

@ -30,52 +30,52 @@
uint32_t gpio_set(PinName pin)
{
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
* service should be used for GPIO in NS domain.
*/
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
* service should be used for GPIO in NS domain.
*/
return 0;
}
void gpio_init(gpio_t *obj, PinName pin)
{
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
* service should be used for GPIO in NS domain.
*/
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
* service should be used for GPIO in NS domain.
*/
}
void gpio_mode(gpio_t *obj, PinMode mode)
{
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
* service should be used for GPIO in NS domain.
*/
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
* service should be used for GPIO in NS domain.
*/
}
void gpio_dir(gpio_t *obj, PinDirection direction)
{
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
* service should be used for GPIO in NS domain.
*/
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
* service should be used for GPIO in NS domain.
*/
}
int gpio_is_connected(const gpio_t *obj)
{
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
* service should be used for GPIO in NS domain.
*/
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
* service should be used for GPIO in NS domain.
*/
return 0;
}
void gpio_write(gpio_t *obj, int value)
{
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
* service should be used for GPIO in NS domain.
*/
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
* service should be used for GPIO in NS domain.
*/
}
int gpio_read(gpio_t *obj)
{
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
* service should be used for GPIO in NS domain.
*/
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
* service should be used for GPIO in NS domain.
*/
return 0;
}