-
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.
- Loading branch information
Heiko Carstens
authored and
Martin Schwidefsky
committed
Sep 11, 2009
1 parent
def7e93
commit 6ac278c
Showing
8 changed files
with
32 additions
and
37 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: 4bb5e07b68565d7983108993aa23eccf5f1b35fe | ||
refs/heads/master: e86a6ed63f46fe8fb555fda531084bca3ef62fd7 |
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,6 +1,26 @@ | ||
/* | ||
* Copyright IBM Corp. 2000,2009 | ||
* Author(s): Hartmut Penner <hp@de.ibm.com>, | ||
* Martin Schwidefsky <schwidefsky@de.ibm.com>, | ||
* Christian Ehrhardt <ehrhardt@de.ibm.com>, | ||
*/ | ||
|
||
#ifndef _ASM_S390_CPU_H | ||
#define _ASM_S390_CPU_H | ||
|
||
#define MAX_CPU_ADDRESS 255 | ||
|
||
#ifndef __ASSEMBLY__ | ||
|
||
#include <linux/types.h> | ||
|
||
struct cpuid | ||
{ | ||
unsigned int version : 8; | ||
unsigned int ident : 24; | ||
unsigned int machine : 16; | ||
unsigned int unused : 16; | ||
} __packed; | ||
|
||
#endif /* __ASSEMBLY__ */ | ||
#endif /* _ASM_S390_CPU_H */ |
This file was deleted.
Oops, something went wrong.
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
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
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