-
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: 318386 b: refs/heads/master c: 815e972 h: refs/heads/master v: v3
- Loading branch information
Nicolas Royer
authored and
Herbert Xu
committed
Jul 11, 2012
1 parent
a66b911
commit c978904
Showing
5 changed files
with
165 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: 6c79294f44fd7d1122cbaabff3b9815b074c0dd0 | ||
refs/heads/master: 815e972110052e8da68b5b5298ca2cd69cb7c3c0 |
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,22 @@ | ||
#ifndef __LINUX_ATMEL_AES_H | ||
#define __LINUX_ATMEL_AES_H | ||
|
||
#include <mach/at_hdmac.h> | ||
|
||
/** | ||
* struct aes_dma_data - DMA data for AES | ||
*/ | ||
struct aes_dma_data { | ||
struct at_dma_slave txdata; | ||
struct at_dma_slave rxdata; | ||
}; | ||
|
||
/** | ||
* struct aes_platform_data - board-specific AES configuration | ||
* @dma_slave: DMA slave interface to use in data transfers. | ||
*/ | ||
struct aes_platform_data { | ||
struct aes_dma_data *dma_slave; | ||
}; | ||
|
||
#endif /* __LINUX_ATMEL_AES_H */ |