[Style] More whitespace fixes.

This commit is contained in:
Piotr Esden-Tempski 2015-12-14 23:42:27 +01:00
parent 3a7cbec776
commit 5828a77749
4 changed files with 12 additions and 11 deletions

View File

@ -48,11 +48,11 @@
#define IOMUXC(pad) MMIO32(IOMUXC_BASE + (0x4 * (pad)))
#define IOMUXC_PAD(mode, speed, dse, pus, flags) \
(IOMUXC_##mode) << IOMUXC_MUX_MODE_SHIFT | \
((IOMUXC_##mode) << IOMUXC_MUX_MODE_SHIFT | \
(IOMUXC_##speed) << IOMUXC_SPEED_SHIFT | \
(IOMUXC_##dse) << IOMUXC_DSE_SHIFT | \
(IOMUXC_##pus) << IOMUXC_PUS_SHIFT | \
(flags)
(flags))
/* --- GPIO registers ------------------------------------------------------ */

View File

@ -51,7 +51,7 @@ void pmc_peripheral_clock_enable(uint8_t pid)
PMC_PCER1 = 1 << (pid & 31);
}
#else
//SAM3N and SAM3U only have one Peripheral Clock Enable Register
/* SAM3N and SAM3U only have one Peripheral Clock Enable Register */
PMC_PCER = 1 << pid;
#endif
}

View File

@ -45,3 +45,4 @@ void crs_autotrim_usb_enable(void)
CRS_CR |= CRS_CR_AUTOTRIMEN;
CRS_CR |= CRS_CR_CEN;
}