diff options
author | Rocco Marco Guglielmi <roccomarco.guglielmi@gmail.com> | 2017-09-16 23:42:52 +0000 |
---|---|---|
committer | Rocco Marco Guglielmi <roccomarco.guglielmi@gmail.com> | 2017-09-16 23:42:52 +0000 |
commit | 6b355dee89ab6d7c6a3d47e207635d8cee27104b (patch) | |
tree | 8ced1f6854b9a87f4c9f4e053daf26a4a0b54e1c /os/hal | |
parent | 30e99fdee65f9dd4a017a5ec859fc0cc3e64897a (diff) | |
download | ChibiOS-6b355dee89ab6d7c6a3d47e207635d8cee27104b.tar.gz ChibiOS-6b355dee89ab6d7c6a3d47e207635d8cee27104b.tar.bz2 ChibiOS-6b355dee89ab6d7c6a3d47e207635d8cee27104b.zip |
Style fixes
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10603 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-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(); \
}
/**
|