forked from torvalds/linux
-
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.
Conflicts: fs/exec.c Removed IMA changes (the IMA checks are now performed via may_open()). Signed-off-by: James Morris <[email protected]>
- Loading branch information
Showing
537 changed files
with
8,687 additions
and
5,816 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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
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,25 @@ | ||
/* | ||
* <mach/asp.h> - DaVinci Audio Serial Port support | ||
*/ | ||
#ifndef __ASM_ARCH_DAVINCI_ASP_H | ||
#define __ASM_ARCH_DAVINCI_ASP_H | ||
|
||
#include <mach/irqs.h> | ||
|
||
/* Bases of register banks */ | ||
#define DAVINCI_ASP0_BASE 0x01E02000 | ||
#define DAVINCI_ASP1_BASE 0x01E04000 | ||
|
||
/* EDMA channels */ | ||
#define DAVINCI_DMA_ASP0_TX 2 | ||
#define DAVINCI_DMA_ASP0_RX 3 | ||
#define DAVINCI_DMA_ASP1_TX 8 | ||
#define DAVINCI_DMA_ASP1_RX 9 | ||
|
||
/* Interrupts */ | ||
#define DAVINCI_ASP0_RX_INT IRQ_MBRINT | ||
#define DAVINCI_ASP0_TX_INT IRQ_MBXINT | ||
#define DAVINCI_ASP1_RX_INT IRQ_MBRINT | ||
#define DAVINCI_ASP1_TX_INT IRQ_MBXINT | ||
|
||
#endif /* __ASM_ARCH_DAVINCI_ASP_H */ |
Oops, something went wrong.