Commit a01c0ed4 authored by Ronald G. Minnich's avatar Ronald G. Minnich
Browse files

Fix another volatile declaration

Corresponding to coreboot v1 svn r893.
parent 7ead885e
......@@ -92,7 +92,7 @@ int probe_29f040b (struct flashchip * flash)
int erase_29f040b (struct flashchip * flash)
{
volatile char * bios = flash->virt_addr;
volatile unsigned char * bios = flash->virt_addr;
*(bios + 0x555) = 0xAA;
*(bios + 0x2AA) = 0x55;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment