-
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: 163700 b: refs/heads/master c: 57844a8 h: refs/heads/master v: v3
- Loading branch information
Thomas Gleixner
committed
Aug 27, 2009
1 parent
47fccf8
commit e926695
Showing
5 changed files
with
36 additions
and
2 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: 4152f93508b184a85a975810b2cc3dc5c597cf57 | ||
refs/heads/master: 57844a8f8e29802f37ad9a0f94eb11d6ae358603 |
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 |
---|---|---|
|
@@ -7,6 +7,8 @@ | |
|
||
#ifndef __ASSEMBLY__ | ||
|
||
#include <asm/x86_init.h> | ||
|
||
/* | ||
* Any setup quirks to be performed? | ||
*/ | ||
|
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,15 @@ | ||
#ifndef _ASM_X86_PLATFORM_H | ||
#define _ASM_X86_PLATFORM_H | ||
|
||
/** | ||
* struct x86_init_ops - functions for platform specific setup | ||
* | ||
*/ | ||
struct x86_init_ops { | ||
}; | ||
|
||
extern struct x86_init_ops x86_init; | ||
|
||
extern void x86_init_noop(void); | ||
|
||
#endif |
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,17 @@ | ||
/* | ||
* Copyright (C) 2009 Thomas Gleixner <tglx@linutronix.de> | ||
* | ||
* For licencing details see kernel-base/COPYING | ||
*/ | ||
#include <linux/init.h> | ||
|
||
#include <asm/x86_init.h> | ||
|
||
void __cpuinit x86_init_noop(void) { } | ||
|
||
/* | ||
* The platform setup functions are preset with the default functions | ||
* for standard PC hardware. | ||
*/ | ||
struct __initdata x86_init_ops x86_init = { | ||
}; |