Skip to content

Commit a115c93

Browse files
0xc0170Oren Cohen
authored andcommitted
gpio: indent fix
1 parent 67905bd commit a115c93

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

targets/TARGET_ARM_SSG/TARGET_MUSCA_A1/gpio_api.c

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -30,52 +30,52 @@
3030

3131
uint32_t gpio_set(PinName pin)
3232
{
33-
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
34-
* service should be used for GPIO in NS domain.
35-
*/
33+
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
34+
* service should be used for GPIO in NS domain.
35+
*/
3636
return 0;
3737
}
3838

3939
void gpio_init(gpio_t *obj, PinName pin)
4040
{
41-
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
42-
* service should be used for GPIO in NS domain.
43-
*/
41+
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
42+
* service should be used for GPIO in NS domain.
43+
*/
4444
}
4545

4646
void gpio_mode(gpio_t *obj, PinMode mode)
4747
{
48-
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
49-
* service should be used for GPIO in NS domain.
50-
*/
48+
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
49+
* service should be used for GPIO in NS domain.
50+
*/
5151
}
5252

5353
void gpio_dir(gpio_t *obj, PinDirection direction)
5454
{
55-
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
56-
* service should be used for GPIO in NS domain.
57-
*/
55+
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
56+
* service should be used for GPIO in NS domain.
57+
*/
5858
}
5959

6060
int gpio_is_connected(const gpio_t *obj)
6161
{
62-
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
63-
* service should be used for GPIO in NS domain.
64-
*/
62+
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
63+
* service should be used for GPIO in NS domain.
64+
*/
6565
return 0;
6666
}
6767

6868
void gpio_write(gpio_t *obj, int value)
6969
{
70-
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
71-
* service should be used for GPIO in NS domain.
72-
*/
70+
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
71+
* service should be used for GPIO in NS domain.
72+
*/
7373
}
7474

7575
int gpio_read(gpio_t *obj)
7676
{
77-
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
78-
* service should be used for GPIO in NS domain.
79-
*/
77+
/* Due to a HW limitation, GPIO in Musca-A1 is Secure only, so secure
78+
* service should be used for GPIO in NS domain.
79+
*/
8080
return 0;
8181
}

0 commit comments

Comments
 (0)