drivers/intel/fsp/fsp_util: 'long unsigned int' is 'unsigned long'
This is a bit of strange way to write 'unsigned long', fix that. Change-Id: I17caf971dac840e0f35f883dacfbd5c94d8c03d6 Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-on: http://review.coreboot.org/6196 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
913e1718cd
commit
8f3de28af3
|
@ -226,7 +226,7 @@ static void print_hob_mem_attributes(void *Hobptr) {
|
|||
printk(BIOS_SPEW, " Memory type %s (0x%x)\n",
|
||||
Hobmemtypenames[(u32)Hobmemtype], (u32) Hobmemtype);
|
||||
printk(BIOS_SPEW, " at location 0x%0lx with length 0x%0lx\n",
|
||||
(long unsigned int)Hobmemaddr, (long unsigned int)Hobmemlength);
|
||||
(unsigned long)Hobmemaddr, (unsigned long)Hobmemlength);
|
||||
}
|
||||
|
||||
static void print_hob_resource_attributes(void *Hobptr) {
|
||||
|
@ -263,7 +263,7 @@ static void print_hob_resource_attributes(void *Hobptr) {
|
|||
printk(BIOS_SPEW, " Resource %s (0x%0x) has attributes 0x%0x\n",
|
||||
Hobrestypestr, Hobrestype, Hobresattr);
|
||||
printk(BIOS_SPEW, " at location 0x%0lx with length 0x%0lx\n",
|
||||
(long unsigned int)Hobresaddr, (long unsigned int)Hobreslength);
|
||||
(unsigned long)Hobresaddr, (unsigned long)Hobreslength);
|
||||
}
|
||||
|
||||
static const char * get_hob_type_string(void *Hobptr) {
|
||||
|
|
Loading…
Reference in New Issue