On 4/8/10 7:07 PM, Myles Watson wrote:
Here's one for all boards.
Signed-off-by: Myles Watson <mylesgw@gmail.com mailto:mylesgw@gmail.com>
Acked-by: Stefan Reinauer stepan@coresystems.de
Index: svn/src/mainboard/amd/dbm690t/acpi_tables.c
--- svn.orig/src/mainboard/amd/dbm690t/acpi_tables.c +++ svn/src/mainboard/amd/dbm690t/acpi_tables.c @@ -57,7 +57,7 @@ static void dump_mem(u32 start, u32 end) } #endif
-extern const acpi_header_t AmlCode; +extern const unsigned char AmlCode[];
I don't think defining them const here gains us much, as they're not defined const when they're created. Can we change that, maybe? Extra sed s/unsigned char AmlCode/const unsigned char AmlCode/g on the iasl output maybe?
Stefan