-
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: 21438 b: refs/heads/master c: e77227e h: refs/heads/master v: v3
- Loading branch information
David S. Miller
committed
Mar 20, 2006
1 parent
5239faa
commit 2f07e2c
Showing
3 changed files
with
77 additions
and
1 deletion.
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: d5eb4004303b4dd04ec83b926b5fc2d9ceda4b2e | ||
refs/heads/master: e77227eb4e17591a6a511b9c0ff6e8ad7350c575 |
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,18 @@ | ||
/* vdev.h: SUN4V virtual device interfaces and defines. | ||
* | ||
* Copyright (C) 2006 David S. Miller <davem@davemloft.net> | ||
*/ | ||
|
||
#ifndef _SPARC64_VDEV_H | ||
#define _SPARC64_VDEV_H | ||
|
||
#include <linux/types.h> | ||
#include <asm/oplib.h> | ||
|
||
extern u32 sun4v_vdev_devhandle; | ||
extern int sun4v_vdev_root; | ||
extern struct linux_prom_pci_intmap *sun4v_vdev_intmap; | ||
extern int sun4v_vdev_num_intmap; | ||
extern struct linux_prom_pci_intmap sun4v_vdev_intmask; | ||
|
||
#endif /* !(_SPARC64_VDEV_H) */ |