1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-02 06:23:18 +02:00

tree: Retype variable programmer_may_write with bool

Use the bool type instead of an integer for the variable
`programmer_may_write`, since this represents its purpose much better.

Signed-off-by: Felix Singer <felixsinger@posteo.net>
Change-Id: I69958527ae018a92f1c42734a7990d0c532dee0c
Reviewed-on: https://review.coreboot.org/c/flashrom/+/66885
Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
Felix Singer
2022-08-19 02:48:15 +02:00
committed by Anastasia Klimchuk
parent bf85c62a8d
commit 2ffc56b337
5 changed files with 9 additions and 6 deletions

View File

@ -18,6 +18,7 @@
* GNU General Public License for more details.
*/
#include <stdbool.h>
#include <string.h>
#include <stdlib.h>
#include "flash.h"
@ -554,7 +555,7 @@ static int handle_imc(const struct programmer_cfg *cfg, struct pci_dev *dev, enu
}
if (!amd_imc_force)
programmer_may_write = 0;
programmer_may_write = false;
msg_pinfo("Writes have been disabled for safety reasons because the presence of the IMC\n"
"was detected and it could interfere with accessing flash memory. Flashrom will\n"
"try to disable it temporarily but even then this might not be safe:\n"