Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 48672
b: refs/heads/master
c: 70c0846
h: refs/heads/master
v: v3
  • Loading branch information
Randy Dunlap authored and Len Brown committed Feb 16, 2007
1 parent 4cc991f commit 5bbd0d8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f3ccb06f3b8e0cf42b579db21f3ca7f17fcc3f38
refs/heads/master: 70c0846e430881967776582e13aefb81407919f1
2 changes: 1 addition & 1 deletion trunk/drivers/acpi/osl.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ void __iomem *acpi_os_map_memory(acpi_physical_address phys, acpi_size size)
{
if (phys > ULONG_MAX) {
printk(KERN_ERR PREFIX "Cannot map memory that high\n");
return 0;
return NULL;
}
if (acpi_gbl_permanent_mmap)
/*
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/acpi/processor_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ static int __init acpi_processor_init(void)
#ifdef CONFIG_SMP
if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0,
(struct acpi_table_header **)&madt)))
madt = 0;
madt = NULL;
#endif

acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/acpi/tables/tbxface.c
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ acpi_get_table(char *signature,
}

if (!acpi_gbl_permanent_mmap) {
acpi_gbl_root_table_list.tables[i].pointer = 0;
acpi_gbl_root_table_list.tables[i].pointer = NULL;
}

return (status);
Expand Down

0 comments on commit 5bbd0d8

Please sign in to comment.