Merge branch 'linus' into cpus4096
This commit is contained in:
@@ -153,12 +153,14 @@ int __init firmware_map_add_early(resource_size_t start, resource_size_t end,
|
||||
|
||||
static ssize_t start_show(struct firmware_map_entry *entry, char *buf)
|
||||
{
|
||||
return snprintf(buf, PAGE_SIZE, "0x%llx\n", entry->start);
|
||||
return snprintf(buf, PAGE_SIZE, "0x%llx\n",
|
||||
(unsigned long long)entry->start);
|
||||
}
|
||||
|
||||
static ssize_t end_show(struct firmware_map_entry *entry, char *buf)
|
||||
{
|
||||
return snprintf(buf, PAGE_SIZE, "0x%llx\n", entry->end);
|
||||
return snprintf(buf, PAGE_SIZE, "0x%llx\n",
|
||||
(unsigned long long)entry->end);
|
||||
}
|
||||
|
||||
static ssize_t type_show(struct firmware_map_entry *entry, char *buf)
|
||||
|
Reference in New Issue
Block a user