summaryrefslogtreecommitdiffstats
path: root/cpu/arm925t/omap925.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpu/arm925t/omap925.c')
-rw-r--r--cpu/arm925t/omap925.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpu/arm925t/omap925.c b/cpu/arm925t/omap925.c
index 1166ca695f..ae62656f33 100644
--- a/cpu/arm925t/omap925.c
+++ b/cpu/arm925t/omap925.c
@@ -41,14 +41,14 @@ void gpiosetdir(ushort mask, ushort in)
void gpiosetout(ushort mask, ushort out)
{
ushort *r_ptr, r_val;
-
+
r_ptr = (ushort *)GPIO_DATA_OUTPUT_REG; /* set pointer */
r_val = *r_ptr & ~mask; /* get previous val, clear bits we want to change */
r_val |= (out & mask); /* set specified bits in value + plus origional ones */
- *r_ptr = r_val; /* write it out */
-/*
+ *r_ptr = r_val; /* write it out */
+/*
* gcc screwed this one up :(.
- *
+ *
* *(ushort *)GPIO_DATA_OUTPUT_REG = (*(ushort *)GPIO_DATA_OUTPUT_REG & ~mask) | (out & mask);
*/
OpenPOWER on IntegriCloud