1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-01 14:11:15 +02:00

Add support for Atmel AT45DB* chips

Corresponding to flashrom svn r1723.

Signed-off-by: Aidan Thornton <makosoft@gmail.com>
Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
This commit is contained in:
Aidan Thornton
2013-08-27 18:01:53 +00:00
committed by Stefan Tauner
parent 6db8bad530
commit db4e87dccf
7 changed files with 760 additions and 60 deletions

View File

@ -270,7 +270,7 @@ static void spi_prettyprint_status_register_bp(uint8_t status, int bp)
}
/* Unnamed bits. */
static void spi_prettyprint_status_register_bit(uint8_t status, int bit)
void spi_prettyprint_status_register_bit(uint8_t status, int bit)
{
msg_cdbg("Chip status register: Bit %i is %sset\n", bit, (status & (1 << bit)) ? "" : "not ");
}