summaryrefslogtreecommitdiffstats
path: root/spi25.c
diff options
context:
space:
mode:
authorStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>2012-08-02 23:51:28 +0000
committerStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>2012-08-02 23:51:28 +0000
commit1ba08f6d417921d9cb37b8b8823f4cb9d68f5895 (patch)
tree1dba91fd092949624eaaa4e73dd43719c06dc3f0 /spi25.c
parentcb30158fbf1a63d65de53080d0cdbcb23efd95d6 (diff)
downloadast2050-flashrom-1ba08f6d417921d9cb37b8b8823f4cb9d68f5895.zip
ast2050-flashrom-1ba08f6d417921d9cb37b8b8823f4cb9d68f5895.tar.gz
Clean up a25.c, at25.c, spi25.c
- introduce spi_prettyprint_status_register_atmel_at25_wpen() - use spi_prettyprint_status_register_bit() where possible - generify spi_prettyprint_status_register_bp3210 and use it in at25.c too Corresponding to flashrom svn r1560. Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Diffstat (limited to 'spi25.c')
-rw-r--r--spi25.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/spi25.c b/spi25.c
index a6e7e21..3693783 100644
--- a/spi25.c
+++ b/spi25.c
@@ -327,21 +327,24 @@ void spi_prettyprint_status_register_welwip(uint8_t status)
}
/* Prettyprint the status register. Common definitions. */
-void spi_prettyprint_status_register_bp3210(uint8_t status, int bp)
+void spi_prettyprint_status_register_bp(uint8_t status, int bp)
{
switch (bp) {
/* Fall through. */
+ case 4:
+ msg_cdbg("Chip status register: Block Protect 4 (BP4) "
+ "is %sset\n", (status & (1 << 5)) ? "" : "not ");
case 3:
- msg_cdbg("Chip status register: Bit 5 / Block Protect 3 (BP3) "
+ msg_cdbg("Chip status register: Block Protect 3 (BP3) "
"is %sset\n", (status & (1 << 5)) ? "" : "not ");
case 2:
- msg_cdbg("Chip status register: Bit 4 / Block Protect 2 (BP2) "
+ msg_cdbg("Chip status register: Block Protect 2 (BP2) "
"is %sset\n", (status & (1 << 4)) ? "" : "not ");
case 1:
- msg_cdbg("Chip status register: Bit 3 / Block Protect 1 (BP1) "
+ msg_cdbg("Chip status register: Block Protect 1 (BP1) "
"is %sset\n", (status & (1 << 3)) ? "" : "not ");
case 0:
- msg_cdbg("Chip status register: Bit 2 / Block Protect 0 (BP0) "
+ msg_cdbg("Chip status register: Block Protect 0 (BP0) "
"is %sset\n", (status & (1 << 2)) ? "" : "not ");
}
}
@@ -355,7 +358,7 @@ void spi_prettyprint_status_register_bit(uint8_t status, int bit)
static void spi_prettyprint_status_register_common(uint8_t status)
{
- spi_prettyprint_status_register_bp3210(status, 3);
+ spi_prettyprint_status_register_bp(status, 3);
spi_prettyprint_status_register_welwip(status);
}
OpenPOWER on IntegriCloud