stm32: flash: pull up prefetch to _all
Turns out, there's lots of common code for flash. Pull up prefetch on/off to start with, as there's only a single bit name different. Pull up the definitions of common API functions too, starting with flash_set_ws. Even if the implementations are different, things that meant to be the same, should be defined centrally.
This commit is contained in:
@@ -58,25 +58,5 @@ void flash_clear_status_flags(void)
|
||||
flash_clear_eop_flag();
|
||||
}
|
||||
|
||||
/**
|
||||
* Enable the FLASH Prefetch Buffer
|
||||
* This buffer is used for instruction fetches and is enabled by default after
|
||||
* reset.
|
||||
*/
|
||||
void flash_prefetch_enable(void)
|
||||
{
|
||||
FLASH_ACR |= FLASH_ACR_PRFTBE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Disable the FLASH Prefetch Buffer
|
||||
* This buffer is used for instruction fetches and is enabled by default after
|
||||
* reset.
|
||||
*/
|
||||
void flash_prefetch_disable(void)
|
||||
{
|
||||
FLASH_ACR &= ~FLASH_ACR_PRFTBE;
|
||||
}
|
||||
|
||||
/**@}*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user