stm32f1: bkp: fix typo in CR_TPAL register

Even original documentation had the full TPAL matching the ref man bit
descriptions.

Reported-by: _ami_ on irc.
This commit is contained in:
Karl Palsson 2018-03-08 10:56:45 +00:00
parent 7bd7d48408
commit 6b40e9777e

View File

@ -174,7 +174,7 @@
/* --- BKP_CR values ------------------------------------------------------- */
/* TPAL: TAMPER pin active level */
#define BKP_CR_TAL (1 << 1)
#define BKP_CR_TPAL (1 << 1)
/* TPE: TAMPER pin enable */
#define BKP_CR_TPE (1 << 0)