-
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: 105118 b: refs/heads/master c: 2f01a97 h: refs/heads/master v: v3
- Loading branch information
Mike Rapoport
authored and
Russell King
committed
Jul 9, 2008
1 parent
aec168f
commit 84d6abf
Showing
4 changed files
with
308 additions
and
140 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: 3c85bce6f820258b49bb74c53d2f47c058199f1b | ||
refs/heads/master: 2f01a973729712c373ccc8acde4d218c38f3029a |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
extern void __cmx270_pci_init_irq(void); | ||
extern void __cmx270_pci_init_irq(int irq_gpio); | ||
extern void __cmx270_pci_suspend(void); | ||
extern void __cmx270_pci_resume(void); | ||
|
||
#ifdef CONFIG_PCI | ||
#define cmx270_pci_init_irq __cmx270_pci_init_irq | ||
#define cmx270_pci_suspend __cmx270_pci_suspend | ||
#define cmx270_pci_resume __cmx270_pci_resume | ||
#define cmx270_pci_init_irq(x) __cmx270_pci_init_irq(x) | ||
#define cmx270_pci_suspend(x) __cmx270_pci_suspend(x) | ||
#define cmx270_pci_resume(x) __cmx270_pci_resume(x) | ||
#else | ||
#define cmx270_pci_init_irq() do {} while (0) | ||
#define cmx270_pci_suspend() do {} while (0) | ||
#define cmx270_pci_resume() do {} while (0) | ||
#define cmx270_pci_init_irq(x) do {} while (0) | ||
#define cmx270_pci_suspend(x) do {} while (0) | ||
#define cmx270_pci_resume(x) do {} while (0) | ||
#endif |
Oops, something went wrong.