aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/intel/fsp/fsp_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/intel/fsp/fsp_util.c')
-rw-r--r--src/drivers/intel/fsp/fsp_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/intel/fsp/fsp_util.c b/src/drivers/intel/fsp/fsp_util.c
index 4e1db6b838..a9b5624676 100644
--- a/src/drivers/intel/fsp/fsp_util.c
+++ b/src/drivers/intel/fsp/fsp_util.c
@@ -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) {