-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 223416 b: refs/heads/master c: 30919b0 h: refs/heads/master v: v3
- Loading branch information
Bjorn Helgaas
authored and
Jesse Barnes
committed
Dec 17, 2010
1 parent
67c96ed
commit 39e8d34
Showing
4 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: fcb119183c73bf0781009713f303e28b1fb13d3e | ||
refs/heads/master: 30919b0bf356a8ee0ef4f7d38ca8ad99b96820b2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#include <linux/ioport.h> | ||
#include <asm/e820.h> | ||
|
||
void arch_remove_reservations(struct resource *avail) | ||
{ | ||
/* Trim out BIOS area (low 1MB) */ | ||
if (avail->flags & IORESOURCE_MEM) { | ||
if (avail->start < BIOS_END) | ||
avail->start = BIOS_END; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters