diff options
-rw-r--r-- | os/hal/ports/SAMA/SAMA5D2x/sama_pmc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/SAMA/SAMA5D2x/sama_pmc.h b/os/hal/ports/SAMA/SAMA5D2x/sama_pmc.h index 9a607f9ba..3bfb58a79 100644 --- a/os/hal/ports/SAMA/SAMA5D2x/sama_pmc.h +++ b/os/hal/ports/SAMA/SAMA5D2x/sama_pmc.h @@ -92,7 +92,7 @@ #define pmcDisablePidLow(mask) { \
pmcDisableWP(); \
PMC->PMC_PCDR0 |= (mask); \
- pmcEnableWP(); \
+ pmcEnableWP(); \
}
/**
@@ -106,7 +106,7 @@ #define pmcEnablePidHigh(mask) { \
pmcDisableWP(); \
PMC->PMC_PCER1 |= (mask); \
- pmcEnableWP(); \
+ pmcEnableWP(); \
}
/**
|