aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/boards/OLIMEX_LPC_P2148/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/boards/OLIMEX_LPC_P2148/board.c')
-rw-r--r--os/hal/boards/OLIMEX_LPC_P2148/board.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/boards/OLIMEX_LPC_P2148/board.c b/os/hal/boards/OLIMEX_LPC_P2148/board.c
index eaa0ea054..67d6294be 100644
--- a/os/hal/boards/OLIMEX_LPC_P2148/board.c
+++ b/os/hal/boards/OLIMEX_LPC_P2148/board.c
@@ -62,13 +62,13 @@ void __early_init(void) {
#if HAL_USE_MMC_SPI
/* Board-related functions related to the MMC_SPI driver.*/
-bool_t mmc_lld_is_card_inserted(MMCDriver *mmcp) {
+bool mmc_lld_is_card_inserted(MMCDriver *mmcp) {
(void)mmcp;
return !palReadPad(IOPORT2, PB_CP1);
}
-bool_t mmc_lld_is_write_protected(MMCDriver *mmcp) {
+bool mmc_lld_is_write_protected(MMCDriver *mmcp) {
(void)mmcp;
return palReadPad(IOPORT2, PB_WP1);